/* ==========================================================================
   SISTEMA DE DISEÑO VISUAL CORPORATIVO - COCINA DE HADAS V4.0
   ========================================================================== */

@font-face {
    font-family: 'MCF StoneHead';
    src: url('assets/MCF_StoneHead_Demo.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    /* Paleta Corporativa Oficial - Premium Black, White & Gold */
    --primary: hsl(0, 0%, 7%);            /* Negro Obsidiana Profundo */
    --primary-light: hsl(0, 0%, 16%);     /* Carbón Oscuro */
    --primary-tint: hsl(0, 0%, 96%);      /* Blanco Alabastro Tintado */
    --secondary: hsl(43, 72%, 50%);       /* Oro Corporativo Metalizado (Lujo) */
    --secondary-hover: hsl(43, 85%, 58%);  /* Oro Brillante Shimmer */
    --gold: hsl(43, 80%, 48%);            /* Oro Mágico Detalle */
    --gold-light: hsl(43, 90%, 96%);      /* Fondo Crema Oro Suave */
    --white: hsl(0, 0%, 100%);
    --light-bg: hsl(0, 0%, 99%);          /* Blanco Puro Suave */
    --dark-neutral: hsl(0, 0%, 4%);       /* Negro Absoluto */
    --text-main: hsl(0, 0%, 12%);         /* Texto Principal Gris Muy Oscuro */
    --text-muted: hsl(0, 0%, 42%);        /* Texto Atenuado */
    --border-color: rgba(0, 0, 0, 0.08);  /* Bordes Finos Sutiles */
    
    /* Variables de Estado */
    --success: hsl(150, 60%, 35%);
    --success-light: hsl(150, 70%, 95%);
    --warning: hsl(35, 90%, 45%);
    --closed: hsl(350, 65%, 48%);
    --closed-light: hsl(350, 80%, 96%);
    
    /* Efectos y Sombras */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.1);
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   RESET & ESTILOS BASE
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text-main);
    background-color: var(--light-bg);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 70px; /* Offset debido a la barra sticky */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--dark-neutral);
    font-weight: 700;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   BARRA DE NAVEGACIÓN STICKY
   ========================================================================== */

.nav-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-brand {
    font-family: 'MCF StoneHead', 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: normal;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.nav-brand:hover {
    transform: scale(1.02);
}

.nav-brand span {
    background: linear-gradient(135deg, var(--primary-light), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 16px;
}

.nav-links a {
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 50px;
    transition: var(--transition);
}

.nav-links a i {
    width: 16px;
    height: 16px;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--secondary);
    background-color: var(--primary-tint);
}

.nav-links a:hover i {
    transform: translateY(-2px);
}

.btn-nav-fudo {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-light), var(--secondary));
    padding: 10px 22px;
    border-radius: 50px;
    box-shadow: 0 4px 14px rgba(43, 72%, 50%, 0.15);
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.btn-nav-fudo:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(43, 72%, 50%, 0.25);
    filter: brightness(1.1);
}

/* ==========================================================================
   PANEL GLASSMORPHIC
   ========================================================================== */

.glass-panel {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-md);
}

/* ==========================================================================
   HERO / ENCABEZADO MÁGICO (FONDO NEGRO Y DETALLES EN DORADO)
   ========================================================================== */

.main-header {
    position: relative;
    background: linear-gradient(135deg, hsl(0, 0%, 5%), hsl(0, 0%, 14%)) !important;
    color: var(--white);
    padding: 80px 0;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.main-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, hsla(43, 72%, 50%, 0.15) 0%, transparent 70%) !important;
    pointer-events: none;
}

.main-header::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, hsla(0, 0%, 100%, 0.04) 0%, transparent 70%) !important;
    pointer-events: none;
}

.hero-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
    gap: 40px;
}

.hero-brand-area {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
    min-width: 320px;
}

.header-logo-img {
    width: 220px;
    height: auto;
    aspect-ratio: 2493 / 1678;
    border-radius: var(--radius-md);
    object-fit: contain;
    border: 3px solid var(--secondary);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.35);
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px;
    flex-shrink: 0;
}

.brand-title {
    font-family: 'MCF StoneHead', 'Outfit', sans-serif;
    font-size: 3.6rem;
    font-weight: normal;
    color: var(--white);
    letter-spacing: 1px;
    line-height: 1.1;
    text-shadow: 0 2px 12px rgba(212, 175, 55, 0.4);
}

.brand-slogan {
    font-size: 1.3rem;
    color: var(--secondary);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 4px;
}

.hero-cta-area {
    flex: 1;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.hero-actions-grid {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary-glowing {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-light), var(--secondary));
    padding: 14px 28px;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.25);
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.btn-primary-glowing:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.35);
    filter: brightness(1.1);
}

.btn-secondary-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.25);
    padding: 12px 28px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.btn-secondary-outline:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: var(--secondary);
    color: var(--secondary);
    transform: translateY(-2px);
}

/* ==========================================================================
   SOBRE NOSOTROS CARD
   ========================================================================== */

.about-card {
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.about-card::before {
    content: '🧚';
    position: absolute;
    bottom: -20px;
    right: 20px;
    font-size: 8rem;
    opacity: 0.03;
    pointer-events: none;
}

.accent-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: var(--gold-light);
    color: hsl(43, 90%, 25%);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.about-content h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 16px;
    font-weight: 800;
}

.about-content p {
    font-size: 1.05rem;
    color: var(--text-main);
    line-height: 1.7;
    margin-bottom: 24px;
}

.about-features {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.about-feat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--primary-light);
    font-size: 0.95rem;
}

.about-feat-item i {
    width: 20px;
    height: 20px;
    color: var(--secondary);
}

/* ==========================================================================
   DISEÑO GRILA Y GALERÍA INTERACTIVA DE IMÁGENES
   ========================================================================== */

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-gallery {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.gallery-main {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-md), 0 0 20px rgba(212, 175, 55, 0.15);
    background-color: var(--card-bg);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.2s ease-in-out;
}

.gallery-thumbs {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.thumb-img {
    height: 60px;
    flex: 1;
    border-radius: var(--radius-sm);
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    opacity: 0.7;
}

.thumb-img:hover {
    opacity: 1;
    border-color: rgba(212, 175, 55, 0.5);
}

.thumb-img.active {
    opacity: 1;
    border-color: var(--secondary);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    transform: scale(1.03);
}

/* ==========================================================================
   SECCIONES Y TÍTULOS GENERALES
   ========================================================================== */

.section-title {
    font-size: 2.2rem;
    color: var(--primary);
    text-align: center;
    font-weight: 800;
    margin-bottom: 8px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

/* ==========================================================================
   NUESTRAS ESPECIALIDADES (GRILLA Y TARJETAS)
   ========================================================================== */

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.category-card {
    border-radius: var(--radius-md);
    padding: 32px;
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 175, 55, 0.35) !important;
}

.cat-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 6px 14px rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.cat-icon i {
    width: 22px;
    height: 22px;
}

.category-card h3 {
    font-size: 1.35rem;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 700;
}

.category-card p {
    font-size: 0.94rem;
    color: var(--text-main);
    line-height: 1.6;
}

/* ==========================================================================
   MINUTA SEMANAL GRILA Y DISEÑO PREMIUM (LUNES A VIERNES)
   ========================================================================== */

.weekly-menu-card {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(212, 175, 55, 0.25);
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.85), rgba(10, 10, 10, 0.95));
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 175, 55, 0.12);
    overflow: hidden;
    position: relative;
    padding: 0;
    transition: all 0.3s ease;
}

.weekly-menu-card:hover {
    box-shadow: 0 14px 45px rgba(0, 0, 0, 0.6), 0 0 35px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
}

.weekly-menu-header {
    background: linear-gradient(90deg, rgba(20, 20, 20, 0.95), rgba(40, 35, 20, 0.95));
    padding: 20px 30px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.weekly-menu-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--white);
    margin: 0;
}

.weekly-menu-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.weekly-menu-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    background-color: rgba(0, 0, 0, 0.2);
}

.day-card {
    padding: 24px 18px;
    border-right: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.day-card:last-child {
    border-right: none;
}

.day-card:hover {
    background-color: rgba(212, 175, 55, 0.03);
}

.day-card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 12px;
    width: 100%;
}

.day-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.today-badge {
    background-color: #25D366;
    color: #000;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    box-shadow: 0 0 8px rgba(37, 211, 102, 0.4);
}

.day-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    margin-bottom: 14px;
}

.day-card-icon i {
    width: 20px;
    height: 20px;
}

.day-card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.day-menu-badge {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.day-dish-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    color: var(--white);
    font-weight: 700;
    margin: 0 0 8px 0;
    line-height: 1.3;
    min-height: 2.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.day-dish-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin: 0;
}

/* Resaltado premium para el día actual */
.day-card.today-highlight {
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.06), rgba(212, 175, 55, 0.12));
    box-shadow: inset 0 0 15px rgba(212, 175, 55, 0.15);
}

.day-card.today-highlight::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--secondary);
    box-shadow: 0 0 10px var(--secondary);
}

.day-card.today-highlight .day-title {
    color: var(--secondary);
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.2);
}

.day-card.today-highlight .day-card-icon {
    background-color: var(--gold-light);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.weekly-menu-footer {
    padding: 20px 30px;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
}

.btn-weekly-cta {
    font-size: 0.95rem;
    padding: 12px 35px;
    border-radius: var(--radius-sm);
}

/* Responsividad para móviles y tablets */
@media (max-width: 992px) {
    .weekly-menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .day-card {
        border-right: 1px solid rgba(212, 175, 55, 0.1);
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }
    .day-card:nth-child(3) {
        border-right: none;
    }
    .day-card:nth-child(4), .day-card:nth-child(5) {
        border-bottom: none;
    }
}

@media (max-width: 576px) {
    .weekly-menu-grid {
        grid-template-columns: 1fr;
    }
    .day-card {
        border-right: none;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        padding: 20px 15px;
    }
    .day-card:last-child {
        border-bottom: none;
    }
    .day-dish-title {
        min-height: auto;
    }
}

/* Banner de redirección a Fudo (Degradado Blanco/Oro Mágico) */

.fudo-redirect-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    margin-bottom: 60px;
    gap: 32px;
    border-color: rgba(212, 175, 55, 0.25) !important;
    background: linear-gradient(135deg, var(--white), var(--gold-light)) !important;
    position: relative;
    overflow: hidden;
}

.fudo-redirect-banner::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 100%;
    background: radial-gradient(circle, hsla(43, 72%, 50%, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.redirect-info h3 {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 6px;
}

.redirect-info p {
    font-size: 0.98rem;
    color: var(--text-main);
}

.btn-banner-size {
    flex-shrink: 0;
}

/* ==========================================================================
   SERVICIOS ADICIONALES
   ========================================================================== */

.info-section {
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(212, 175, 55, 0.25);
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--primary-tint);
    color: var(--secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.feature-icon i {
    width: 20px;
    height: 20px;
}

.feature-card h3 {
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 700;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==========================================================================
   SECCIÓN DE CONTACTO, MAPA Y HORARIOS
   ========================================================================== */

.contact-hours-section {
    margin-bottom: 70px;
}

.contact-hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.contact-hours-card {
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: var(--transition);
}

.contact-hours-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 175, 55, 0.25) !important;
}

.card-header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary));
    color: var(--white);
    margin-bottom: 20px;
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.card-header-icon i {
    width: 24px;
    height: 24px;
}

.contact-hours-card h3 {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 8px;
    font-weight: 800;
}

.section-subtitle-sm {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* Indicador de Abierto/Cerrado */
.status-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    margin-bottom: 24px;
    transition: var(--transition);
}

.status-indicator-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    position: relative;
}

.status-open {
    background-color: var(--success-light);
    color: var(--success);
    border: 1px solid rgba(150, 60%, 35%, 0.2);
}

.status-open .status-indicator-dot {
    background-color: var(--success);
    box-shadow: 0 0 0 4px rgba(150, 60%, 35%, 0.2);
    animation: pulse-green 2s infinite;
}

.status-closed {
    background-color: var(--closed-light);
    color: var(--closed);
    border: 1px solid rgba(350, 65%, 48%, 0.2);
}

.status-closed .status-indicator-dot {
    background-color: var(--closed);
    box-shadow: 0 0 0 4px rgba(350, 65%, 48%, 0.2);
}

@keyframes pulse-green {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(150, 60%, 35%, 0.5); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(150, 60%, 35%, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(150, 60%, 35%, 0); }
}

/* Lista de Horas */
.hours-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-color);
}

.hours-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.day-label {
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
}

.hours-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.95rem;
}

.hours-separator {
    color: var(--border-color);
}

.badge-closed {
    background-color: var(--closed-light);
    color: var(--closed);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.hours-row.closed-day .day-label {
    color: var(--text-muted);
}

/* Contact Quick Info */
.contact-quick-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
}

.info-item i {
    width: 20px;
    height: 20px;
    color: var(--secondary);
    flex-shrink: 0;
}

/* Contenedor del Mapa */
.map-container {
    width: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.map-container:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--secondary);
}

.map-container iframe {
    display: block;
}

/* ==========================================================================
   PIE DE PÁGINA (FOOTER - FONDO NEGRO Y DETALLES EN DORADO)
   ========================================================================== */

.main-footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 60px 0 30px;
    margin-top: 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    flex: 1;
    min-width: 260px;
}

.footer-logo {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 12px;
}

.footer-brand h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-contact {
    flex: 1.5;
    min-width: 320px;
}

.footer-contact h4 {
    color: var(--secondary);
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.95rem;
}

.contact-link:hover {
    color: var(--secondary);
}

.contact-link i {
    width: 20px;
    height: 20px;
    color: var(--secondary);
}

.contact-link .icon-whatsapp {
    color: #25D366;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
}

/* ==========================================================================
   ANIMACIONES
   ========================================================================== */

@keyframes animate-float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: animate-float 4s ease-in-out infinite;
}

/* ==========================================================================
   BOTONES DESTACADOS DE CONTACTO WHATSAPP (LOCAL Y EMPRESAS)
   ========================================================================== */

.wa-contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
}

.btn-wa-contact-local,
.btn-wa-contact-corp {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.btn-wa-contact-local {
    background-color: #25D366;
    color: var(--white);
}

.btn-wa-contact-local:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
    filter: brightness(1.05);
}

.btn-wa-contact-corp {
    background-color: var(--primary-light);
    color: var(--white);
    border: 1px solid var(--secondary);
}

.btn-wa-contact-corp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.2);
    border-color: var(--secondary-hover);
}

.btn-wa-contact-local i,
.btn-wa-contact-corp i {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.btn-wa-contact-local i {
    color: var(--white);
}

.btn-wa-contact-corp i {
    color: var(--secondary);
}

.wa-btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.wa-btn-label {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.wa-btn-phone {
    font-size: 0.78rem;
    opacity: 0.85;
}

/* ==========================================================================
   WIDGET FLOTANTE WHATSAPP DOBLE
   ========================================================================== */

.whatsapp-floating-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.btn-wa-main {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border: 2px solid var(--secondary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
    transition: var(--transition);
    position: relative;
}

.btn-wa-main:hover {
    transform: scale(1.08) rotate(8deg);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.45);
    border-color: var(--secondary-hover);
}

.wa-floating-logo {
    width: 34px;
    height: 34px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

.btn-wa-main:hover .wa-floating-logo {
    transform: scale(1.1);
}

.wa-badge-pulse {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background-color: #ff3b30;
    border-radius: 50%;
    border: 2px solid var(--primary-light);
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(255, 59, 48, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 59, 48, 0); }
}

.wa-dropdown-menu {
    width: 280px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    margin-bottom: 16px;
    overflow: hidden;
    animation: zoomIn 0.3s ease-out;
    transform-origin: bottom right;
}

.wa-dropdown-menu.hidden {
    display: none;
}

.wa-dropdown-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    padding: 16px 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.wa-dropdown-header h4 {
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 2px;
    font-family: 'Outfit', sans-serif;
}

.wa-dropdown-header p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
}

.wa-dropdown-body {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wa-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    color: var(--text-main);
    background-color: var(--primary-tint);
}

.wa-dropdown-item:hover {
    background-color: var(--gold-light);
    transform: translateX(-4px);
    box-shadow: var(--shadow-sm);
    border-left: 3px solid var(--secondary);
}

.item-icon-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.bg-wa-local {
    background-color: #25D366;
}

.bg-wa-corp {
    background-color: var(--primary-light);
    border: 1px solid var(--secondary);
}

.item-icon-circle i {
    width: 18px;
    height: 18px;
}

.item-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.item-title {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary);
}

.item-number {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Contenedor de imagen en las tarjetas de especialidades fijas */
.day-card-img-container {
    width: 100%;
    height: 120px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 16px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.day-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.day-card:hover .day-card-img {
    transform: scale(1.08);
}

/* Grilla para el menú permanente (6 columnas responsivas) */
.fixed-menu-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    background-color: rgba(0, 0, 0, 0.2);
}

.fixed-menu-grid .day-card {
    border-right: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: none;
}

.fixed-menu-grid .day-card:last-child {
    border-right: none;
}

@media (max-width: 992px) {
    .fixed-menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .fixed-menu-grid .day-card {
        border-right: 1px solid rgba(212, 175, 55, 0.1);
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }
    .fixed-menu-grid .day-card:nth-child(3),
    .fixed-menu-grid .day-card:nth-child(6) {
        border-right: none;
    }
    .fixed-menu-grid .day-card:nth-child(4),
    .fixed-menu-grid .day-card:nth-child(5),
    .fixed-menu-grid .day-card:nth-child(6) {
        border-bottom: none;
    }
}

@media (max-width: 576px) {
    .fixed-menu-grid {
        grid-template-columns: 1fr;
    }
    .fixed-menu-grid .day-card {
        border-right: none;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }
    .fixed-menu-grid .day-card:last-child {
        border-bottom: none;
    }
}

/* ==========================================================================
   MEDIA QUERIES RESPONSIVOS
   ========================================================================== */

@media (max-width: 992px) {
    .fudo-redirect-banner {
        flex-direction: column;
        text-align: center;
        padding: 30px;
        gap: 20px;
    }
    .contact-hours-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }
    .nav-container {
        height: 60px;
    }
    .nav-links, .nav-actions {
        display: none;
    }
    .nav-container {
        justify-content: center;
    }
    .main-header {
        padding: 50px 0;
        text-align: center;
    }
    .hero-brand-area {
        flex-direction: column;
    }
    .brand-title {
        font-size: 2.4rem;
    }
    .brand-slogan {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }
    .hero-actions-grid {
        justify-content: center;
    }
    .about-card {
        padding: 24px;
    }
    .about-content h2 {
        font-size: 1.8rem;
    }
    .categories-grid {
        grid-template-columns: 1fr;
    }
    .contact-hours-card {
        padding: 24px;
    }
}
