/* ======== RESET ======== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", system-ui, sans-serif;
}

body {
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

/* ======== CONTENEDOR PRINCIPAL ======== */
.container {
    padding: 20px;
    padding-bottom: 120px;
    max-width: 900px;
    margin: auto;
}

/* ======== GLASS EFFECT BASE ======== */
.glass {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.05);
}

/* ======== HEADER ======== */
.header {
    text-align: center;
    margin-bottom: 30px;
}

.brand {
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
}

.tagline {
    font-size: 1.1rem;
    opacity: 0.8;
}

/* ======== BOTONES PRINCIPALES ======== */
.main-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
}

.btn-primary,
.btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    border-radius: 16px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    transition: 0.25s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #ffffff15, #ffffff05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.15);
}

/* ======== SECCIONES ======== */
.section-title {
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* ======== SERVICIOS ======== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 18px;
}

.service-image {
    text-align: center;
}

.service-img {
    width: 100%;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.25);
    transition: 0.25s ease;
}

.service-img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.15);
}

.service-name {
    margin-top: 8px;
    font-size: 1rem;
    opacity: 0.85;
}

/* ======== HORARIOS ======== */
.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.day-schedule {
    padding: 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
}

.day-schedule.closed {
    opacity: 0.5;
}

.day-name {
    font-size: 1.2rem;
    font-weight: 600;
}

.hours {
    font-size: 1rem;
    opacity: 0.85;
}

/* ======== CONTACTO ======== */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border-radius: 14px;
    text-decoration: none;
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    transition: 0.25s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.15);
}

/* ======== BARRA DE NAVEGACIÓN INFERIOR ======== */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px 0;
    display: flex;
    justify-content: space-around;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #aaa;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.25s ease;
}

.nav-item.active,
.nav-item:hover {
    color: #fff;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
}

.nav-icon {
    font-size: 1.4rem;
}

/* ======== RESPONSIVE ======== */
@media (min-width: 700px) {
    .main-buttons {
        flex-direction: row;
    }

    .btn-primary,
    .btn-secondary {
        flex: 1;
    }
}
