/* =====================================================
   CHOLAOS CAUDAL
===================================================== */
:root {
    /* Tus variables originales */
    --orange: #ed7135;
    --orange-dark: #d85d25;
    --cream: #fff9f3;
    --cream-dark: #f5eee7;
    --dark: #211b18;
    --gray: #77706b;
    --white: #ffffff;
    --border: rgba(40,30,25,.08);
    --title: "Playfair Display", serif;
    --body: "DM Sans", sans-serif;

    /* Curva de aceleración de alta gama para las transiciones */
    --premium-transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}


/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    font-family: var(--body);

    background: var(--cream);

    color: var(--dark);

    overflow-x: hidden;

}


img {

    display: block;

    max-width: 100%;

}


a {

    color: inherit;

}


/* =====================================================
   NAVBAR
===================================================== */
/* =====================================================
   CHOLAOS EL ORIGINAL - NAVBAR STYLE SCRIPT
===================================================== */

/* --- Contenedor Principal (Estado Inicial Arriba del Todo) --- */
.navbar {
    position: fixed; /* Fijo para que acompañe el desplazamiento */
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    padding: 0 6%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000; /* Prioridad máxima de superposición */
    color: var(--white);
    font-family: var(--body);
    
    /* Configuración transparente inicial */
    background-color: transparent;
    border-bottom: 1px solid transparent;
    
    /* Transición fluida de propiedades clave al hacer scroll */
    transition: 
        background-color 0.4s cubic-bezier(0.25, 1, 0.5, 1),
        backdrop-filter 0.4s cubic-bezier(0.25, 1, 0.5, 1),
        height 0.4s cubic-bezier(0.25, 1, 0.5, 1),
        border-color 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.navbar.scrolled {
    height: 75px; 
    background-color: rgba(255, 255, 255, 0.75); /* Blanco con 75% de opacidad */
    backdrop-filter: blur(12px); 
    -webkit-backdrop-filter: blur(12px); 
    border-bottom: 1px solid var(--border); 
    
    color: var(--dark); /* Cambia el texto a oscuro para que se pueda leer sobre el blanco */
}

/* Esto asegura que los enlaces también cambien a oscuro al bajar */
.navbar.scrolled .nav-links a,
.navbar.scrolled .logo {
    color: var(--dark);
}

/* --- Bloque del Logotipo --- */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--white);
    transition: var(--premium-transition);
}

.logo:hover {
    transform: translateY(-2px); /* Elevación sutil */
}

.logo-circle {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    overflow: hidden;
    position: relative;
}

/* Animación elástica independiente del gráfico SVG */
.logo-obj {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
    padding: 0;
    margin: 0;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logo:hover .logo-obj {
    transform: scale(1.1) rotate(8deg); /* Escala y rotación leve */
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text strong {
    font-family: var(--title); /* Tu fuente tipográfica de títulos */
    font-size: 18px;
    letter-spacing: 2px;
}

.logo-text small {
    font-family: var(--body);
    font-size: 8px;
    letter-spacing: 2px;
    opacity: .75;
}

/* --- Enlaces de Navegación Estándar --- */
.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    position: relative;
    color: var(--white);
    font-family: var(--body);
}

.nav-links a:not(.nav-button) {
    opacity: .8;
    transition: opacity 0.3s ease;
}

/* Subrayado expansivo simétrico usando tu color naranja corporativo */
.nav-links a:not(.nav-button)::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--orange);
    transition: var(--premium-transition);
    transform: translateX(-50%);
}

.nav-links a:not(.nav-button):hover {
    opacity: 1;
}

.nav-links a:not(.nav-button):hover::after {
    width: 100%; /* Expansión magnética */
}

/* --- Botón de Acción Destacado ("Pedir ahora") --- */
.nav-button {
    padding: 15px 25px;
    border-radius: 50px;
    background: var(--orange);
    box-shadow: 0 4px 15px rgba(237, 113, 53, 0); /* Sombra inicial oculta */
    position: relative;
    overflow: hidden;
    transition: var(--premium-transition);
}

/* Capa interna para simular el destello líquido de luz blanca */
.nav-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: none;
}

.nav-button:hover {
    background: var(--orange-dark); /* Cambio de tono suave al naranja oscuro */
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 25px rgba(216, 93, 37, 0.4); /* Aura luminosa difuminada */
}

/* Desplazamiento del destello de izquierda a derecha en hover */
.nav-button:hover::before {
    left: 150%;
    transition: 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --- Botón del Menú Responsive --- */
.menu-button {
    display: none;
    border: 0;
    background: transparent;
    color: var(--white);
    font-size: 26px;
    cursor: pointer;
    z-index: 1001; /* Por encima del panel lateral */
    transition: color 0.3s ease, transform 0.3s ease;
}

/* El botón cambia a color oscuro al hacer scroll si está la navbar blanca */
.navbar.scrolled .menu-button {
    color: var(--dark);
}
/* =====================================================
   ESTILOS RESPONSIVE COMPACTOS Y ANIMADOS (MÓVILES)
===================================================== */

@media (max-width: 992px) {
    /* Navbar principal fija y visible */
    .navbar {
        position: fixed !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        background-color: rgba(20, 20, 20, 0.95) !important;
        backdrop-filter: blur(15px) !important;
        -webkit-backdrop-filter: blur(15px) !important;
        height: 75px !important;
        padding: 0 4% !important;
        z-index: 1000 !important;
    }

    /* Navbar en modo scroll */
    .navbar.scrolled {
        background-color: #f5eee7 !important;
        border-bottom: 1px solid var(--border) !important;
    }

    /* Logotipo horizontal compacto */
    .logo {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        flex-shrink: 0 !important;
    }

    .logo-circle {
        display: grid !important;
        width: 38px !important;
        height: 38px !important;
    }

    .logo-text {
        display: flex !important;
        flex-direction: column !important;
    }

    .logo-text strong {
        color: var(--white) !important;
        font-size: 13px !important;
        letter-spacing: 0.5px !important;
        white-space: nowrap !important;
    }

    .logo-text small {
        display: block !important;
        color: var(--white) !important;
        font-size: 8px !important;
        letter-spacing: 1px !important;
        opacity: 0.8 !important;
    }

    .navbar.scrolled .logo-text strong,
    .navbar.scrolled .logo-text small {
        color: var(--dark) !important;
    }

    /* Botón de apertura (Hamburguesa) siempre arriba del panel */
    .menu-button {
        display: block !important;
        color: var(--white) !important;
        font-size: 24px !important;
        padding-left: 5px !important;
        z-index: 1002 !important;
    }

    .navbar.scrolled .menu-button {
        color: var(--dark) !important;
    }

    /* Panel Lateral Compacto (No tapa toda la pantalla) */
    .nav-links {
        position: fixed !important;
        top: 0 !important;
        right: -320px !important;
        width: 300px !important;
        height: 100vh !important;
        background-color: rgba(20, 20, 20, 0.98) !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 35px !important;
        padding: 40px !important;
        z-index: 1001 !important;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3) !important;
        transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1) !important;
    }

    /* Fondo crema para el panel lateral en modo scroll */
    .navbar.scrolled .nav-links {
        background-color: #f5eee7 !important;
    }

    /* Configuración para la animación de entrada de los enlaces */
    .nav-links a {
        display: block !important;
        color: var(--white) !important;
        font-size: 20px !important;
        width: 100% !important;
        text-align: center !important;
        opacity: 0 !important;
        transform: translateX(40px) !important;
        /* Se añade una transición limpia y suave para cuando el usuario interactúe (Hover/Touch) */
        transition: 
            opacity 0.4s ease, 
            transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
            color 0.3s ease,
            letter-spacing 0.3s ease !important;
    }

    /* Enlaces oscuros sobre fondo crema en scroll */
    .navbar.scrolled .nav-links a {
        color: var(--dark) !important;
    }

    .nav-links a:not(.nav-button)::after {
        display: none !important;
    }

    /* =====================================================
       NUEVA PARTE: ANIMACIÓN INDIVIDUAL (HOVER / TOUCH)
    ===================================================== */
    
    /* Efecto al pasar el mouse o tocar los enlaces normales (Inicio, Menú, etc) */
    .nav-links a:not(.nav-button):hover,
    .nav-links a:not(.nav-button):active {
        color: var(--orange) !important; /* Cambia al naranja corporativo */
        transform: scale(1.08) !important; /* Crece sutilmente */
        letter-spacing: 1.5px !important; /* Expansión elegante de letras */
    }

    /* Botón "Pedir ahora" dentro del panel compacto */
    .nav-button {
        width: auto !important;
        padding: 12px 35px !important;
        font-size: 16px !important;
        border-radius: 50px !important;
        color: var(--white) !important;
        background: var(--orange) !important;
        transition: var(--premium-transition) !important;
    }

    /* Efecto hover/touch específico para el botón "Pedir ahora" en móvil */
    .nav-button:hover,
    .nav-button:active {
        background: var(--orange-dark) !important;
        transform: translateY(-3px) scale(1.05) !important;
        box-shadow: 0 8px 25px rgba(216, 93, 37, 0.4) !important;
    }

    /* ===================================================== */

    /* CLASE ACTIVA: Trae el panel a la pantalla */
    .nav-links.active {
        right: 0 !important;
    }

    /* ANIMACIÓN EN CASCADA AL DESPLEGAR */
    .nav-links.active a {
        opacity: 1 !important;
        transform: translateX(0) !important;
    }

    .nav-links.active a:nth-child(1) { transition-delay: 0.15s !important; }
    .nav-links.active a:nth-child(2) { transition-delay: 0.22s !important; }
    .nav-links.active a:nth-child(3) { transition-delay: 0.29s !important; }
    .nav-links.active a:nth-child(4) { transition-delay: 0.36s !important; }
    .nav-links.active a:nth-child(5) { transition-delay: 0.43s !important; }
}

/* =====================================================
   HERO
===================================================== */

.hero {

    position: relative;

    min-height: 850px;

    padding: 150px 7% 80px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 40px;

    align-items: center;

    overflow: hidden;

    background:

        linear-gradient(
            90deg,
            rgba(18,15,13,.96),
            rgba(18,15,13,.80),
            rgba(18,15,13,.30)
        );

    color: white;

}


/* =====================================================
   VIDEO DE FONDO
===================================================== */

.video-seccion {

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    margin: 0;
    padding: 0;

    overflow: hidden;

    z-index: 0;

    pointer-events: none;

}


.video-fondo {

    position: absolute;

    top: 50%;
    left: 50%;

    width: 100%;
    height: 100%;

    min-width: 100%;
    min-height: 100%;

    transform: translate(-50%, -50%);

    object-fit: cover;

    filter: brightness(0.95) contrast(1.05) saturate(1.1);

}


.video-overlay {

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: linear-gradient(
        135deg,
        rgba(18, 15, 13, 0.85) 0%,
        rgba(18, 15, 13, 0.75) 30%,
        rgba(18, 15, 13, 0.55) 70%,
        rgba(237, 113, 53, 0.15) 100%
    );

    backdrop-filter: blur(2px);

}


/* =====================================================
   CONTENIDO HERO
===================================================== */

.hero-content {

    position: relative;

    z-index: 2;

    max-width: 720px;

    animation: fadeInUp 0.8s ease-out;

}


@keyframes fadeInUp {

    from {

        opacity: 0;

        transform: translateY(30px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}


.hero-tag,
.section-tag {

    display: inline-block;

    color: var(--orange);

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 3px;

    text-transform: uppercase;

    padding: 8px 16px;

    background: rgba(237, 113, 53, 0.1);

    border-radius: 50px;

    border: 1px solid rgba(237, 113, 53, 0.3);

}


.hero h1 {

    margin: 22px 0;

    font-family: var(--title);

    font-size: clamp(55px, 6vw, 92px);

    line-height: .94;

    letter-spacing: -3px;

    font-weight: 800;

    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);

}


.hero h1 span {

    display: inline-block;

    color: #ff8954;

    font-style: italic;

    background: linear-gradient(135deg, #ff8954, #ed7135);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    background-clip: text;

    animation: textFloatMovement 8s ease-in-out infinite;

}


@keyframes textFloatMovement {

    0% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-8px) translateX(-1px); }
    50% { transform: translateY(-14px) translateX(0); }
    75% { transform: translateY(-8px) translateX(1px); }
    100% { transform: translateY(0) translateX(0); }

}


.hero p {

    max-width: 620px;

    color: rgba(255,255,255,.82);

    font-size: 17px;

    line-height: 1.8;

}


.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 14px;

    margin-top: 35px;

}


.btn-primary,
.btn-secondary {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 16px 24px;

    border-radius: 50px;

    text-decoration: none;

    font-weight: 800;

    transition: .3s ease;

}


.btn-primary {

    background: var(--orange);

    color: white;

    box-shadow: 0 15px 35px rgba(237,113,53,.25);

}


.btn-primary:hover {

    background: var(--orange-dark);

    transform: translateY(-4px);

}


.btn-secondary {

    border: 1px solid rgba(255,255,255,.35);

    color: white;

}


.btn-secondary:hover {

    background: rgba(255,255,255,.12);

}


/* =====================================================
   HERO IMAGE
===================================================== */

.hero-image {

    position: relative;

    z-index: 2;

    min-height: 560px;

    display: flex;

    align-items: center;

    justify-content: center;

}


.hero-image > img {

    width: 520px;

    height: 650px;

    object-fit: cover;

    border-radius: 300px 300px 50px 50px;

    box-shadow:
        0 0 80px rgba(237, 113, 53, 0.4),
        0 0 50px rgba(237, 113, 53, 0.25),
        0 80px 160px rgba(0, 0, 0, 0.8),
        inset 0 0 80px rgba(255, 255, 255, 0.1),
        inset 0 -30px 80px rgba(0, 0, 0, 0.2),
        inset -50px 0 60px rgba(255, 255, 255, 0.05);

    animation: movimientoCholao 8s ease-in-out infinite;

    transform-origin: center center;

    will-change: transform;

    position: relative;

    z-index: 3;

    filter: drop-shadow(0 0 30px rgba(237, 113, 53, 0.2)) contrast(1.08) brightness(1.03) saturate(1.1);

    transition: filter 0.4s ease;

}


.hero-image > img:hover {

    filter: drop-shadow(0 0 40px rgba(237, 113, 53, 0.35)) contrast(1.12) brightness(1.06) saturate(1.15);

}


.hero-image > img:hover {

    filter: drop-shadow(0 0 30px rgba(237, 113, 53, 0.25)) contrast(1.1) brightness(1.05);

}

@keyframes movimientoCholao {

    0% {

        transform:
            translateY(0)
            translateX(0)
            scale(1);

    }

    25% {

        transform:
            translateY(-10px)
            translateX(-2px)
            scale(1.01);

    }

    50% {

        transform:
            translateY(-18px)
            translateX(0)
            scale(1.02);

    }

    75% {

        transform:
            translateY(-10px)
            translateX(2px)
            scale(1.01);

    }

    100% {

        transform:
            translateY(0)
            translateX(0)
            scale(1);

    }

}


/* =====================================================
   HERO CARD
===================================================== */

.hero-image-card {

    position: absolute;

    left: 0;

    bottom: 35px;

    padding: 20px 24px;

    background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(255,255,255,.95));

    color: var(--dark);

    border-radius: 18px;

    border: 1px solid rgba(237, 113, 53, 0.2);

    box-shadow: 
        0 20px 60px rgba(0,0,0,.2),
        0 0 30px rgba(237, 113, 53, 0.15);

    backdrop-filter: blur(10px);

    z-index: 3;

}


.hero-image-card span {

    display: block;

    color: var(--orange);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 2px;

}


.hero-image-card strong {

    display: block;

    margin: 5px 0;

    font-family: var(--title);

    font-size: 24px;

}


.hero-image-card small {

    color: var(--gray);

}


/* =====================================================
   MENU INTRO
===================================================== */


.menu-intro {
    max-width: 1450px;
    margin: 40px auto 120px; 
    padding: 80px 7%; 
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 80px;
    align-items: center;

    /* 1. Nuevo fondo claro solicitado y bordes suaves */
    background: #f5eee7;
    border-radius: 35px;
    border: 1px solid rgba(0, 0, 0, 0.05); /* Borde sutil oscuro para definir el recuadro */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06); /* Sombra más suave ideal para fondos claros */
    color: #222; /* Color de texto principal para buen contraste */

    /* Transición suave para el efecto de elevación */
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

/* 2. Efecto interactivo: La sección se eleva y resalta */
.menu-intro:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.1); /* La sombra se intensifica al flotar */
    border-color: rgba(0, 0, 0, 0.1);
}

.menu-intro-content {
    max-width: 540px;
}

/* Estilos de títulos compartidos (Sin alteraciones de tipografía) */
.menu-intro h2,
.section-heading h2,
.products-heading h2,
.location-content h2,
.featured-content h2,
.waffles-title-section h2 { 
    margin: 18px auto; 
    font-family: var(--title);
    font-size: clamp(48px, 5vw, 76px);
    line-height: .95;
    letter-spacing: -2px;
    text-align: center; 
}

.menu-intro h2 span,
.section-heading h2 span,
.products-heading h2 span,
.location-content h2 span,
.featured-content h2 span,
.waffles-title-section h2 span { 
    color: var(--orange);
    font-style: italic;
    display: inline-block; 
}

/* Ajuste del color del párrafo para contraste dentro del nuevo fondo claro */
.menu-intro p {
    color: #555; /* Gris oscuro para una lectura cómoda y profesional */
    line-height: 1.8;
    font-size: 16px;
}

/* Botón estilizado para resaltar sobre el fondo claro */
.menu-intro-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
    padding: 15px 22px;
    background: var(--dark); /* Vuelve a tu fondo oscuro original para generar contraste */
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.menu-intro-button:hover {
    transform: scale(1.05);
    background: var(--orange); /* Cambia a naranja al pasar el mouse como microinteracción */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}


/* =====================================================
   CARRUSEL DE IMÁGENES (Mantenido intacto)
===================================================== */

.carrusel {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 20px 0; 
  width: 100%;     
}

.carrusel img {
  width: 100%;     
  max-width: 320px; 
  height: 380px;   
  object-fit: cover;
  border-radius: 24px; 
  scroll-snap-align: start;
  flex-shrink: 0;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

/* Microinteracción al pasar el mouse sobre una imagen del carrusel */
.carrusel img:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

/* Ocultar barra de scroll clásica */
.carrusel::-webkit-scrollbar {
  display: none;
}
.carrusel {
  -ms-overflow-style: none;  
  scrollbar-width: none;  
}


/* =====================================================
   MALLA DE FOTOS - GRID SECUNDARIO (Mantenido intacto)
===================================================== */

.menu-photo-grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    grid-template-rows: 260px 260px;
    gap: 18px;
    height: 538px;
}

.menu-photo {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
}

.menu-photo.photo-main {
    grid-row: 1 / 3;
}

.menu-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s ease;
}

.menu-photo:hover img {
    transform: scale(1.08);
}

.menu-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 30%, rgba(0,0,0,.80));
}

.photo-label {
    position: absolute;
    left: 22px;
    bottom: 20px;
    z-index: 2;
    color: white;
}

.photo-label span {
    display: block;
    color: #ff9a6a;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 2px;
}

.photo-label strong {
    display: block;
    margin-top: 5px;
    font-family: var(--title);
    font-size: 25px;
}

/* =====================================================
   GALERÍA DEL MENÚ
===================================================== */

.menu-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.menu-gallery-intro p {
    color: var(--gray);
    line-height: 1.7;
}

.menu-gallery-grid {
    display: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.menu-gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    min-height: 240px;
    box-shadow: 0 15px 35px rgba(30,20,15,.08);
}

.menu-gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s ease;
}

.menu-gallery-card:hover img {
    transform: scale(1.07);
}

.menu-gallery-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 20%, rgba(0,0,0,.78));
}

.menu-gallery-card .photo-label {
    position: absolute;
    left: 18px;
    bottom: 16px;
    z-index: 2;
    color: white;
}

.menu-gallery-card .photo-label span {
    display: block;
    color: #ff9a6a;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 2px;
}

.menu-gallery-card .photo-label strong {
    display: block;
    margin-top: 4px;
    font-family: var(--title);
    font-size: 20px;
}


/* =====================================================
  SECCIÓN: ELIGE TU ANTOJITO (CON RECUADRO INTERACTIVO)
===================================================== */


/* SECCIÓN GENERAL CENTRALIZADA */
.antojo-section {
    max-width: 1450px; /* Aumentado para que el cuadro sea más grande en pantallas anchas */
    margin: 40px auto 120px; 
    padding: 80px 6%; /* Incrementado el padding para darle más aire y presencia al cuadro */
    background: #f5eee7;
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center;
    width: 100%;
    box-sizing: border-box;

    /* Configuración del recuadro exterior con puntas redondeadas y volumen */
    border-radius: 35px;
    border: 1px solid rgba(0, 0, 0, 0.05); 
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06); 

    /* Transición suave para el efecto de elevación */
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

/* INTERACCIÓN CON EL MOUSE: Todo el recuadro se eleva y resalta */
.antojo-section:hover {
    transform: translateY(-5px); 
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.1); 
    border-color: rgba(0, 0, 0, 0.1);
}

/* CONTENEDOR DEL TÍTULO CENTRALIZADO */
.antojo-heading {
    max-width: 700px;
    margin-bottom: 45px;
    text-align: center; 
    display: flex;
    flex-direction: column;
    align-items: center; 
}

/* MODIFICADOR INDEPENDIENTE PARA LA ETIQUETA OVALADA */
.antojo-tag {
    margin-bottom: 15px; 
}

/* ESTILOS EXCLUSIVOS PARA EL TÍTULO (EVITA CONFLICTOS) */
.antojo-title {
    font-size: 36px;            
    color: #2a2a2a;             
    margin: 0;                  
    font-weight: 800;           
    line-height: 1.2;           
}

/* PALABRA DESTACADA EN EL TÍTULO */
.antojo-highlight {
    color: #ed7135;             
    display: inline-block;
}

/* LISTA DE TARJETAS CENTRADAS */
.antojo-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 25px; 
    width: 100%;
    max-width: 1300px; /* Aumentado proporcionalmente para que use el espacio del cuadro grande */
    justify-content: center;
}

/* DISEÑO DE LAS TARJETAS */
.antojo-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.antojo-card:hover {
    transform: translateY(-8px); 
    box-shadow: 0 15px 35px rgba(237, 113, 53, 0.15); 
}

.antojo-card img {
    width: 100%;
    height: 350px;
    object-fit: cover; 
    display: block;
}

.antojo-card-content {
    padding: 20px 15px;
}

.antojo-card-content h3 {
    margin: 0;
    font-size: 18px;
    color: var(--dark, #2a2a2a);
    font-weight: 700;
}

/* DISEÑO RESPONSIVO CORREGIDO (ADAPTACIÓN A MÓVILES) */
@media (max-width: 1024px) {
    .antojo-list {
        grid-template-columns: repeat(2, 1fr); /* 2 columnas en tabletas */
    }
}

@media (max-width: 600px) {
    .antojo-list {
        grid-template-columns: 1fr; /* 1 sola columna en pantallas de celular */
    }
    .antojo-title {
        font-size: 28px; 
    }
    .antojo-section {
        padding: 50px 5%; /* Padding más compacto exclusivo para teléfonos móviles */
    }
}




/* =====================================================
   CATEGORIAS
===================================================== */


.categories-section {

    padding: 110px 7%;

    background: #f5eee7;

}


.section-heading {

    max-width: 700px;

    margin-bottom: 100px;

}


.category-list {

    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 20px;

}


.category-card {

    position: relative;

    height: 280px;

    overflow: hidden;

    border-radius: 25px;

    cursor: pointer;

}


.category-card img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .6s ease;

}


.category-card:hover img {

    transform: scale(1.1);

}


.category-card::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            transparent 20%,
            rgba(0,0,0,.85)
        );

}


.category-card-content {

    position: absolute;

    left: 25px;

    bottom: 23px;

    z-index: 2;

    color: white;

}


.category-card-content h3 {

    font-family: var(--title);

    font-size: 30px;

}


/* =====================================================
   WAFFLES CHOCOLATE ESPECIAL
===================================================== */
/* =====================================================
  SECCIÓN INDEPENDIENTE: ANTOJOS Y WAFFLES V2
===================================================== */

.antojos-waffles-v2-seccion {
    /* VARIABLES LOCALES: Cambia estos valores para modificar toda la sección */
    --v2-naranja: #ed7135;
    --v2-oscuro: #2a2a2a;
    --v2-claro: #f5eee7;
    --v2-blanco: #ffffff;
    --v2-fuente-titulo: var(--title, sans-serif);
    
    padding: 110px 7%;
    background: var(--v2-claro);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
}

/* ENCABEZADO SUPERIOR EXTRALOCALIZADO */
.antojos-waffles-v2-bloque-titulo {
    max-width: 800px; /* Un poco más amplio para el texto agrandado */
    margin-bottom: 50px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* ETIQUETA SUPERIOR CENTRADA TIPO PÍLDORA (AGRANDADA y ESTILIZADA) */
.antojos-waffles-v2-tag-superior {
    display: inline-block !important;
    margin: 0 auto 20px auto !important;
    text-align: center;
    background: linear-gradient(135deg, var(--v2-naranja), #d65a1e); /* Degradado sutil */
    color: var(--v2-blanco) !important;
    padding: 8px 22px; /* Más empaque físico */
    border-radius: 50px;
    font-size: 13.5px; /* Letra agrandada */
    font-weight: 700;
    letter-spacing: 2px; /* Mayor separación estética */
    box-shadow: 0 4px 15px rgba(237, 113, 53, 0.2); /* Sombra suave */
    text-transform: uppercase;
}

/* TÍTULO PRINCIPAL EXTERNO (LETRA AGRANDADA IMPACTANTE) */
.antojos-waffles-v2-titulo-externo {
    font-family: var(--v2-fuente-titulo);
    font-size: 46px; /* Letra agrandada de alto impacto */
    color: var(--v2-oscuro);             
    margin: 0;                  
    font-weight: 800;           
    line-height: 1.15;           
    letter-spacing: -0.5px;
}

/* PALABRA DESTACADA "FAVORITO" CON DEGRADADO METÁLICO PREMIUM */
.antojos-waffles-v2-resaltado {
    background: linear-gradient(135deg, var(--v2-naranja) 0%, #ff8243 100%);
    -webkit-background-clip: text;
    background-clip: text; /* Propiedad estándar obligatoria */
    -webkit-text-fill-color: transparent;
    color: transparent; /* Respaldo para navegadores modernos */
    display: inline-block;
}


/* ENVOLTORIO DEL VIDEO Y CONTENEDORES INTERNOS (ANIMACIÓN EN HOVER INTEGRADA) */
.antojos-waffles-v2-contenedor-video {
    position: relative;
    margin: 0 auto 80px auto;
    max-width: 1200px; /* Recuadro más grande */
    border-radius: 35px;
    overflow: hidden;
    padding: 65px 45px; /* Más espaciado interno */
    background: linear-gradient(135deg, var(--v2-oscuro), #1a1a1a);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px; 
    width: 100%;

    /* Relieve y sombra iniciales para el recuadro del video */
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);

    /* Transición suave para el efecto de elevación del recuadro general */
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

/* INTERACCIÓN CON EL MOUSE: El cuadro flotará y el borde se iluminará sutilmente */
.antojos-waffles-v2-contenedor-video:hover {
    transform: translateY(-5px); /* Elevación añadida */
    box-shadow: 0 35px 60px rgba(0, 0, 0, 0.4); /* Proyección de sombra más profunda en hover */
    border-color: rgba(237, 113, 53, 0.3); /* Destello sutil de tu naranja de marca en el borde */
}

.antojos-waffles-v2-media-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.antojos-waffles-v2-video-elemento {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.antojos-waffles-v2-capa-oscura {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.9) 100%
    );
    z-index: 1;
}

/* BLOQUE DE TEXTO INTERNO SOBRE VIDEO */
.antojos-waffles-v2-texto-box {
    position: relative;
    z-index: 2;
    max-width: 750px; 
    text-align: center;
    color: var(--v2-blanco);
    width: 100%;
}

.antojos-waffles-v2-info-interna {
    margin: 0;
}

.antojos-waffles-v2-tag-interno {
    display: block;
    margin-bottom: 15px;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--v2-naranja);
}

.antojos-waffles-v2-titulo-interno {
    font-family: var(--v2-fuente-titulo);
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
    color: var(--v2-blanco);
}

.antojos-waffles-v2-titulo-interno span {
    color: var(--v2-naranja);
    display: block;
    margin-top: 10px;
}

.antojos-waffles-v2-descripcion {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 16px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
}

/* GRID DE TARJETAS SOBRE VIDEO (MANTENIDO INTACTO) */
.antojos-waffles-v2-galeria-fotos {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px; 
    width: 100%;
    max-width: 1100px; /* Galería más grande en pantalla */
}

/* Animaciones flotantes */
.antojos-waffles-v2-item-animado {
    animation: floatCardV2 6s ease-in-out infinite;
}
.antojos-waffles-v2-galeria-fotos .antojos-waffles-v2-item-animado:nth-child(2) {
    animation-delay: 1.5s;
}
.antojos-waffles-v2-galeria-fotos .antojos-waffles-v2-item-animado:nth-child(3) {
    animation-delay: 3s;
}

@keyframes floatCardV2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* TARJETAS INDIVIDUALES (MANTENIDO INTACTO) */
.antojos-waffles-v2-tarjeta {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
    border: 2px solid rgba(237, 113, 53, 0.25);
    border-radius: 24px;
    overflow: hidden;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    cursor: pointer;
}

.antojos-waffles-v2-tarjeta:hover {
    transform: translateY(-12px) scale(1.03);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08));
    border-color: rgba(237, 113, 53, 0.8);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 30px rgba(237, 113, 53, 0.3);
}

.antojos-waffles-v2-tarjeta img {
    width: 100%;
    height: 300px; 
    object-fit: cover;
    display: block;
    transition: all 0.5s ease;
    filter: brightness(0.85);
}

.antojos-waffles-v2-tarjeta:hover img {
    filter: brightness(1.05) contrast(1.05);
    transform: scale(1.05);
}

.antojos-waffles-v2-tarjeta h3 {
    font-family: var(--v2-fuente-titulo);
    font-size: 18px;
    padding: 14px;
    color: var(--v2-blanco);
    margin: 0;
    font-weight: 700;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
}

.antojos-waffles-v2-tarjeta:hover h3 {
    color: var(--v2-naranja);
}

/* RESPONSIVO (MÓVILES) */
@media (max-width: 768px) {
    .antojos-waffles-v2-galeria-fotos {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .antojos-waffles-v2-titulo-externo {
        font-size: 32px; 
    }
    .antojos-waffles-v2-titulo-interno {
        font-size: 34px;
    }
    .antojos-waffles-v2-contenedor-video {
        padding: 30px 15px;
    }
}



/* =====================================================
  CATÁLOGO COMPLETO 
===================================================== */
/* CONTENEDOR PRINCIPAL: Ahora alinea el encabezado a la izquierda y la galería a la derecha */
.waffles-catalog-section {
    margin-top: 60px;
    padding: 80px 7%;
    background: var(--cream);
    border-radius: 35px;
    display: flex;
    flex-direction: row; /* Coloca encabezado y galería en línea */
    gap: 50px;
    align-items: flex-start;
}

/* ENCABEZADO LATERAL INDEPENDIENTE */
.waffles-catalog-heading {
    display: flex;
    flex-direction: column; /* Apila la etiqueta y el título verticalmente */
    justify-content: flex-start;
    align-items: flex-start;
    width: 250px; /* Ancho fijo para el bloque de la izquierda */
    min-width: 250px;
    position: sticky; /* Se queda fijo al hacer scroll si la galería es larga */
    top: 40px;
}

/* Evita interferencias con divs fantasmas */
.waffles-catalog-heading > div {
    flex: none;
}

/* ETIQUETA SUPERIOR EXCLUSIVA */
.waffle-lateral-tag {
    display: inline-block !important;
    font-size: 11px !important;
    letter-spacing: 3px !important;
    font-weight: 800 !important;
    color: var(--orange) !important;
    margin-bottom: 12px !important;
    text-transform: uppercase;
    position: relative;
    padding-left: 15px;
}

/* Detalle estético: Línea decorativa al lado de "PRODUCTOS" */
.waffle-lateral-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--orange);
    border-radius: 50%;
}

/* TÍTULO H2 EXCLUSIVO */
.waffle-lateral-title {
    font-family: var(--title) !important;
    font-size: 46px !important;
    font-weight: 800 !important;
    line-height: 1.05 !important;
    color: var(--dark) !important;
    margin: 0 !important;
    text-align: left;
}

/* TEXTO DESTACADO EN EL H2 EXCLUSIVO */
.waffle-lateral-highlight {
    color: var(--orange) !important;
    display: block !important;
    margin-top: 5px !important;
    font-style: italic; /* Toque elegante para el texto destacado */
}

/* AJUSTE DE LA GALERÍA: Toma el espacio restante al lado derecho */
.waffles-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Reducido a 3 columnas para balancear el diseño con el menú lateral */
    gap: 20px;
    flex-grow: 1;
    margin-top: 0; /* Removido el margen superior innecesario */
}

/* RESPONSIVE: Vuelve a la normalidad en pantallas pequeñas */
@media (max-width: 1024px) {
    .waffles-catalog-section {
        flex-direction: column;
        gap: 30px;
    }
    .waffles-catalog-heading {
        width: 100%;
        position: static;
        margin-bottom: 20px;
    }
    .waffles-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .waffles-gallery {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   TU ESTILO DE TARJETAS ORIGINAL (PERMANECE IGUAL SIN ALTERACIONES)
   ========================================================================== */
.waffles-gallery-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.waffles-gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(30, 20, 15, .15);
    border-color: var(--orange);
}
.waffles-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.waffles-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.waffles-gallery-card:hover .waffles-card-image img {
    transform: scale(1.08);
}
.waffles-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    background: var(--orange);
    color: white;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 2;
}
.waffles-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}
.waffles-card-content h3 {
    font-family: var(--title);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}
.waffles-card-content p {
    color: var(--gray);
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 15px;
    flex-grow: 1;
}
.waffles-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.waffles-price {
    font-size: 16px;
    font-weight: 900;
    color: var(--orange);
}
.waffles-order-btn {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--orange);
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}
.waffles-order-btn:hover {
    transform: scale(1.1);
    background: var(--orange-dark);
}


/* =====================================================
   PRODUCTOS
===================================================== */


.products-section {
    padding: 120px 7%;
}

.products-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 50px;
}

/* --- Nueva etiqueta superior (PRODUCTOS) --- */
.section-tag {
    display: inline-block;
    color: var(--orange);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    position: relative;
    padding-left: 15px;
}

/* Línea decorativa antes de la palabra PRODUCTOS */
.section-tag::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 2px;
    background-color: var(--orange);
}

/* --- Nuevo diseño para el título principal --- */
.products-heading h2 {
    font-family: var(--title), sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #1e140f; 
    line-height: 1.2;
    margin: 0;
}

/* Estilo destacado para la palabra "favoritos" */
.products-heading h2 span {
    color: var(--orange);
    position: relative;
    display: inline-block;
}

/* Subrayado de fondo sutil para la palabra destacados */
.products-heading h2 span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 100%;
    height: 6px;
    background-color: var(--orange);
    opacity: 0.15;
    border-radius: 2px;
    z-index: -1;
}

.products-heading p {
    max-width: 430px;
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
}

/* --- Grid y Tarjetas de productos --- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    overflow: hidden;
    border-radius: 25px;
    background: white;
    border: 1px solid var(--border);
    transition: .35s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(30, 20, 15, .12);
}

.product-image {
    height: 300px;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    padding: 8px 13px;
    border-radius: 50px;
    background: white;
    color: var(--orange);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1px;
}

.product-content {
    padding: 25px;
}

.product-content h3 {
    font-family: var(--title);
    font-size: 27px;
}

.product-content p {
    margin-top: 9px;
    color: var(--gray);
    line-height: 1.6;
    font-size: 13px;
}

.product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.product-price {
    color: var(--orange);
    font-weight: 900;
    font-size: 18px;
}

.order-button {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--orange);
    color: white;
    text-decoration: none;
}

/* =====================================================
   FEATURED
===================================================== */
/* =====================================================
   FEATURED
===================================================== */

.featured-section {
    margin: 0 7% 120px;
    min-height: 550px;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    overflow: hidden;
    border-radius: 35px;
    background: var(--dark);
    color: white;
    
    /* 1. Resalte de borde y sombra profunda para dar volumen */
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    
    /* Transición suave para el efecto de elevación */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* 2. Efecto interactivo: La sección se eleva y su sombra se intensifica */
.featured-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.15);
}

.featured-image {
    overflow: hidden;
    position: relative;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    
    /* Animación automática lenta en bucle */
    animation: zoomCinematico 20s infinite alternate ease-in-out;
    
    /* Transición suave para la interacción del mouse */
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1), filter 0.5s ease;
}

/* Efecto visual al pasar el cursor sobre la sección */
.featured-section:hover .featured-image img {
    transform: scale(1.08);
    filter: brightness(1.1);
}

.featured-content {
    padding: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-content p {
    max-width: 500px;
    color: rgba(255,255,255,.72);
    line-height: 1.8;
    margin-bottom: 30px;
}


/* =====================================================
   ANIMACIONES (KEYFRAMES)
===================================================== */

@keyframes zoomCinematico {
    0% {
        transform: scale(1) translate(0, 0);
    }
    100% {
        transform: scale(1.04) translate(-0.5%, -0.5%);
    }
}





/* =====================================================
   UBICACION
===================================================== */

.location-section {

    padding: 110px 7%;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;

    background: #f5eee7;

}


.location-content {

    max-width: 600px;

}


.info-item {

    display: flex;

    gap: 18px;

    margin: 28px 0;

}


.info-icon {

    flex: 0 0 48px;

    width: 48px;

    height: 48px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: #fff;

    color: var(--orange);

}


.info-item strong {

    display: block;

}


.info-item p {

    margin-top: 5px;

    color: var(--gray);

    line-height: 1.6;

}


.location-image {

    height: 600px;

    overflow: hidden;

    border-radius: 35px;

}


.location-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}
/* =====================================================
   mapa
===================================================== */
/* ==========================================================================
   Aislamiento Estricto - Sección Ubicación y Mapa
   ========================================================================== */

/* Contenedor exterior de la ubicación */
.contenedor-ubicacion-mapa {
  max-width: 800px !important;
  margin: 40px auto !important;
  padding: 20px !important;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
  text-align: center !important;
  background: transparent !important;
}

/* Título de la ubicación */
.contenedor-ubicacion-mapa .titulo-ubicacion-mapa {
  color: #2c3e50 !important;
  font-size: 2rem !important;
  margin-top: 0 !important;
  margin-bottom: 10px !important;
  font-weight: 700 !important;
  text-align: center !important;
}

/* Párrafo descriptivo del mapa */
.contenedor-ubicacion-mapa .texto-ubicacion-mapa {
  color: #7f8c8d !important;
  font-size: 1.1rem !important;
  margin-bottom: 30px !important;
  line-height: 1.5 !important;
  text-align: center !important;
}

/* Envoltura estructural para el iframe del mapa */
.contenedor-ubicacion-mapa .marco-mapa-google {
  width: 100% !important;
  display: block !important;
}

/* Estilos específicos aplicados al mapa interactivo */
.contenedor-ubicacion-mapa .marco-mapa-google iframe {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
  border-radius: 12px !important;
  transition: transform 0.3s ease !important;
  display: block !important;
  width: 100% !important;
}

/* Animación sutil al posicionar el cursor sobre el mapa */
.contenedor-ubicacion-mapa .marco-mapa-google iframe:hover {
  transform: translateY(-5px) !important;
}



/* =====================================================
   FOOTER
===================================================== */

.footer {

    padding: 60px 7% 25px;

    background: #191512;

    color: white;

    text-align: center;

}


.footer-logo {

    display: inline-flex;

    align-items: center;

    gap: 12px;

}


.footer-logo > div {

    display: flex;

    flex-direction: column;

    text-align: left;

}


.footer-logo small {

    font-size: 8px;

    opacity: .6;

    letter-spacing: 2px;

}


.footer > p {

    margin: 20px 0;

    color: rgba(255,255,255,.6);

}


.socials {

    display: flex;

    justify-content: center;

    gap: 12px;

}


.socials a {

    width: 45px;

    height: 45px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: rgba(255,255,255,.08);

    text-decoration: none;

}


.footer-bottom {

    margin-top: 40px;

    padding-top: 20px;

    border-top: 1px solid rgba(255,255,255,.08);

    color: rgba(255,255,255,.4);

    font-size: 12px;

}


/* =====================================================
 social redes 
===================================================== */
/* Contenedor principal para apilar los botones */
/* =====================================================
 social redes 
===================================================== */
/* Contenedor principal para apilar los botones */
.social-container {
    position: fixed;
    right: 25px;
    bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px; /* Espacio de separación entre cada botón */
    z-index: 999;
}

/* Estilos base compartidos para los tres botones */
.whatsapp, .facebook, .instagram {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    /* Transición suave para todos los estados cambiantes */
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.3s ease, 
                filter 0.3s ease;
    /* Animación de entrada al cargar la página */
    animation: fadeInUp 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) both;
}

/* Control del tamaño y color del SVG interno */
.social-container svg {
    width: 28px;
    height: 28px;
    fill: #ffffff; /* Iconos internos siempre blancos */
    transition: transform 0.4s ease;
}

/* Colores específicos de cada marca y sus sombras de brillo */
.whatsapp {
    background: #25D366;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
    animation-delay: 0.1s; /* Entrada escalonada */
}

.facebook {
    background: #1877F2;
    box-shadow: 0 10px 20px rgba(24, 119, 242, 0.2);
    animation-delay: 0.2s;
}

.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    box-shadow: 0 10px 20px rgba(214, 36, 159, 0.2);
    animation-delay: 0.3s;
}

/* =====================================================
 Animaciones de Efecto Hover (Interacción)
===================================================== */
.whatsapp:hover, .facebook:hover, .instagram:hover {
    transform: translateY(-5px) scale(1.1); /* Efecto elevación y tamaño */
    filter: brightness(1.1); /* Ligero destello de iluminación */
}

/* Brillo extra personalizado por botón al pasar el mouse */
.whatsapp:hover { box-shadow: 0 15px 30px rgba(37, 211, 102, 0.45); }
.facebook:hover { box-shadow: 0 15px 30px rgba(24, 119, 242, 0.45); }
.instagram:hover { box-shadow: 0 15px 30px rgba(214, 36, 159, 0.45); }

/* Rotación sutil del icono interno SVG en Hover */
.social-container a:hover svg {
    transform: rotate(8deg) scale(1.05);
}

/* =====================================================
 Keyframes para Animación de Entrada
===================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {


    .navbar {

        height: 75px;

        padding: 0 20px;

    }


    .logo-text {

        display: none;

    }


    .hero {

        padding: 120px 22px 70px;

    }


    .hero h1 {

        font-size: 55px;

    }


    .hero-image > img {

        width: 300px;

        height: 400px;

    }


    .hero-image-card {

        left: 10px;

    }


    .menu-intro {

        padding: 80px 20px;

    }


    .menu-photo-grid {

        grid-template-columns: 1fr 1fr;

        grid-template-rows: 260px 180px;

        height: 450px;

    }


    .photo-main {

        grid-row: 1 / 3;

    }


    .categories-section,
    .products-section,
    .waffles-special-section {

        padding: 80px 20px;

    }


    .category-list,
    .products-grid {

        grid-template-columns: 1fr;

    }


    .category-card {

        height: 300px;

    }


    .waffles-title-section {

        margin-bottom: 40px;

    }


    .waffles-title-section h2 {

        font-size: 40px;

    }


    .waffles-video-content-wrapper {

        min-height: 500px;

        border-radius: 20px;

        margin-bottom: 60px;

    }


    .waffles-featured-photos {

        grid-template-columns: 1fr;

        width: 95%;

        bottom: 30px;

    }


    .waffles-featured-item img {

        height: 150px;

    }


    .waffles-intro h2 {

        font-size: 35px;

    }


    .waffles-intro p {

        font-size: 14px;

    }


    .waffles-catalog-section {

        padding: 60px 20px;

    }


    .waffles-catalog-heading {

        flex-direction: column;

        align-items: flex-start;

    }


    .waffles-catalog-heading h2 {

        font-size: 40px;

    }


    .waffles-gallery {

        grid-template-columns: repeat(2, 1fr);

    }


    .waffles-card-image {

        height: 150px;

    }


    .waffles-card-content h3 {

        font-size: 16px;

    }



    .products-heading {

        flex-direction: column;

        align-items: flex-start;

    }


    .featured-section {

        margin: 0 20px 80px;

        grid-template-columns: 1fr;

    }


    .featured-image {

        height: 350px;

    }


    .featured-content {

        padding: 45px 30px;

    }


    .location-section {

        padding: 80px 20px;

    }


    .location-image {

        height: 400px;

    }

}


/* =====================================================
   PANTALLAS PEQUEÑAS
===================================================== */

@media (max-width: 430px) {


    .hero-buttons {

        flex-direction: column;

    }


    .btn-primary,
    .btn-secondary {

        width: 100%;

    }


    .menu-photo-grid {

        grid-template-columns: 1fr;

        grid-template-rows: 300px 220px 220px;

        height: auto;

    }


    .photo-main {

        grid-row: auto;

    }


    .hero-image-card {

        left: 0;

        bottom: 0;

    }

}