/* ==========================================================================
   EL GIGANTE PIZZERÍA - Estilos principales
   ========================================================================== */

:root {
    --rojo: #C8202F;
    --rojo-oscuro: #8E1620;
    --amarillo: #F4B21E;
    --negro: #1C1B18;
    --crema: #FFF8EC;
    --crema-osc: #F5E9D3;
    --texto: #2C2620;
    --gris: #6b6459;
    --sombra: rgba(28, 27, 24, 0.15);
    --font-display: 'Fredoka', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--texto);
    background: var(--crema);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 70px;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* ============ CINEMATIC INTRO SPLASH ============ */
body.intro-active {
    overflow: hidden;
}

.intro-splash {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #080706;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.85s ease;
    overflow: hidden;
}

.intro-splash.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.intro-backdrop {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(200, 32, 47, 0.15) 0%, rgba(8, 7, 6, 0.95) 75%),
                linear-gradient(to bottom, rgba(8, 7, 6, 0.8) 0%, transparent 25%, transparent 75%, rgba(8, 7, 6, 0.9) 100%);
    pointer-events: none;
    z-index: 1;
}

.intro-wrapper {
    position: relative;
    z-index: 2;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.intro-video-frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.intro-video-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.intro-overlay-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 7, 6, 0.75) 0%, rgba(8, 7, 6, 0) 22%, rgba(8, 7, 6, 0) 78%, rgba(8, 7, 6, 0.85) 100%);
    pointer-events: none;
}

.intro-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 24px 36px;
    z-index: 10;
}

.intro-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(12, 11, 9, 0.65);
    padding: 8px 18px 8px 10px;
    border-radius: 35px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.intro-logo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--rojo);
}

.intro-brand-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    color: #fff;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    letter-spacing: 0.5px;
}

.intro-brand-name span {
    font-size: 0.58rem;
    font-weight: 500;
    color: var(--amarillo);
    letter-spacing: 2px;
}

.intro-footer {
    position: absolute;
    bottom: 24px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    z-index: 10;
    pointer-events: none;
}

.intro-btn {
    pointer-events: auto;
    border: none;
    cursor: pointer;
    border-radius: 26px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.82rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.intro-btn-sound {
    background: rgba(12, 11, 9, 0.65);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.intro-btn-sound:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.4);
}

.intro-btn-sound.muted {
    background: rgba(200, 32, 47, 0.45);
    border-color: rgba(200, 32, 47, 0.7);
    color: #ffd2d6;
}

.intro-btn-skip {
    background: var(--rojo);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 16px rgba(200, 32, 47, 0.45);
}

.intro-btn-skip:hover {
    background: var(--rojo-oscuro);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 20px rgba(200, 32, 47, 0.65);
}

.intro-btn-skip:active, .intro-btn-sound:active {
    transform: scale(0.96);
}

.intro-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: rgba(255, 255, 255, 0.15);
    z-index: 10;
}

.intro-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(to right, var(--amarillo), var(--rojo));
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(244, 178, 30, 0.8);
}

@media (max-width: 768px) {
    .intro-header {
        padding: 16px 16px;
        justify-content: flex-start;
    }

    .intro-brand {
        padding: 5px 12px 5px 6px;
    }

    .intro-logo {
        width: 32px;
        height: 32px;
    }

    .intro-brand-name {
        font-size: 0.92rem;
    }

    .intro-brand-name span {
        font-size: 0.52rem;
    }

    .intro-footer {
        bottom: 16px;
        padding: 0 14px;
    }

    .intro-btn {
        padding: 7px 12px;
        font-size: 0.75rem;
        gap: 6px;
    }
}

/* ============ TOP BAR ============ */
.topbar {
    background: var(--negro);
    color: #d9d3c4;
    font-size: 0.82rem;
    padding: 8px 0;
}

.topbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-social {
    display: flex;
    align-items: center;
    gap: 16px;
}

.topbar-social a {
    color: #d9d3c4;
    transition: color 0.25s;
}

.topbar-social a:hover {
    color: var(--amarillo);
}

/* ============ NAVBAR ============ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--crema);
    box-shadow: 0 2px 14px var(--sombra);
    transition: padding 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.35s ease, box-shadow 0.35s ease;
}

.navbar.scrolled {
    background: rgba(255, 248, 236, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(28, 27, 24, 0.12);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--rojo);
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--rojo);
    line-height: 1.1;
    display: flex;
    flex-direction: column;
}

.logo-sub {
    font-size: 0.6rem;
    font-weight: 500;
    color: var(--negro);
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-menu a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--texto);
    position: relative;
    transition: color 0.25s;
}

.nav-menu a:not(.btn-order-nav-mobile)::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--rojo);
    transition: width 0.25s;
}

.nav-menu a:not(.btn-order-nav-mobile):hover {
    color: var(--rojo);
}

.nav-menu a:not(.btn-order-nav-mobile):hover::after {
    width: 100%;
}

.btn-order-nav {
    position: relative;
    overflow: hidden;
    background: var(--rojo);
    color: #fff;
    padding: 11px 22px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 4px 12px rgba(200, 32, 47, 0.35);
}

.btn-order-nav:hover {
    background: var(--rojo-oscuro);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(200, 32, 47, 0.45);
}

.btn-order-nav:active {
    transform: translateY(0) scale(0.96);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.menu-toggle span {
    width: 26px;
    height: 3px;
    background: var(--negro);
    border-radius: 2px;
    transition: 0.3s;
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.nav-menu-header {
    display: none;
}

.btn-order-nav-mobile {
    display: none;
}

/* ============ HERO ============ */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--negro) 0%, #2b241c 55%, var(--rojo-oscuro) 130%);
    padding: 70px 0 120px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 15% 20%, rgba(244, 178, 30, 0.12) 0%, transparent 45%),
                       radial-gradient(circle at 85% 80%, rgba(200, 32, 47, 0.25) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(244, 178, 30, 0.15);
    color: var(--amarillo);
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 20px;
    border: 1px solid rgba(244, 178, 30, 0.4);
    animation: badgePulse 3.5s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(244, 178, 30, 0.35);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 0 0 8px rgba(244, 178, 30, 0);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3.4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-title span {
    color: var(--amarillo);
}

.hero-tagline {
    color: #e6e0d4;
    font-size: 1.08rem;
    max-width: 480px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.btn-primary, .btn-secondary {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary::after, .btn-order-nav::after, .btn-order-nav-mobile::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.25) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(25deg);
    pointer-events: none;
    animation: btnShimmer 5s ease-in-out infinite;
}

@keyframes btnShimmer {
    0%, 70% { left: -60%; }
    100% { left: 140%; }
}

.btn-primary {
    background: var(--rojo);
    color: #fff;
    box-shadow: 0 8px 20px rgba(200, 32, 47, 0.4);
}

.btn-primary:hover {
    background: var(--rojo-oscuro);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(200, 32, 47, 0.55);
}

.btn-primary:active, .btn-secondary:active {
    transform: translateY(0) scale(0.96);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.35);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-3px);
}

.hero-info-pills {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.08);
    color: #f1ece0;
    padding: 9px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.12);
}

.pill i {
    color: var(--amarillo);
}

.hero-gallery {
    position: relative;
    height: 420px;
}

.hero-img-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 88%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.45);
    border: 5px solid rgba(255,255,255,0.08);
}

.hero-img-main img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    filter: contrast(1.08) saturate(1.12) brightness(1.03);
    image-rendering: -webkit-optimize-contrast;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-img-main:hover img {
    transform: scale(1.04);
}

.hero-img-main::after {
    content: '';
    position: absolute;
    top: -60%;
    left: -120%;
    width: 70%;
    height: 220%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.42) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(28deg);
    pointer-events: none;
    animation: heroImageShine 6s ease-in-out infinite;
    z-index: 3;
}

@keyframes heroImageShine {
    0%, 60% {
        left: -120%;
        opacity: 0;
    }
    65% {
        opacity: 1;
    }
    100% {
        left: 200%;
        opacity: 0;
    }
}

.hero-img-small {
    position: absolute;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
    border: 4px solid var(--crema);
}

.hero-img-small-1 {
    width: 150px;
    bottom: 30px;
    left: 0;
    animation: float 4s ease-in-out infinite;
}

.hero-img-small-1 img {
    height: 130px;
    object-fit: cover;
}

.hero-img-small-2 {
    width: 95px;
    height: 95px;
    bottom: -15px;
    right: 35px;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--crema);
    box-shadow: 0 15px 30px rgba(0,0,0,0.45);
    animation: float 5s ease-in-out infinite reverse;
}

.hero-img-small-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    display: block;
}

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

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 1;
}

.hero-wave svg {
    width: 100%;
    height: 90px;
    display: block;
}

/* ============ SECTION HEADERS ============ */
.section-tag {
    display: inline-block;
    background: rgba(200, 32, 47, 0.12);
    color: var(--rojo);
    font-weight: 700;
    font-size: 1.45rem;
    padding: 12px 32px;
    border-radius: 35px;
    margin-bottom: 22px;
    letter-spacing: 0.5px;
    border: 1.5px solid rgba(200, 32, 47, 0.25);
    box-shadow: 0 4px 14px rgba(200, 32, 47, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.section-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(200, 32, 47, 0.15);
}

.section-tag.light {
    background: rgba(244, 178, 30, 0.2);
    color: var(--amarillo);
    border: 1.5px solid rgba(244, 178, 30, 0.45);
    box-shadow: 0 4px 14px rgba(244, 178, 30, 0.15);
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.4rem;
    color: var(--negro);
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.section-title.light {
    color: #fff;
}

.section-title-left {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--negro);
    margin-bottom: 18px;
    letter-spacing: 1px;
}

.section-subtitle {
    text-align: center;
    color: var(--gris);
    max-width: 560px;
    margin: 0 auto 46px;
}

.promos-section .container > .section-tag,
.promos-section .container > .section-title,
.promos-section .container > .section-subtitle,
.menu-section .container > .section-tag,
.menu-section .container > .section-title,
.menu-section .container > .section-subtitle,
.gallery-section .container > .section-tag,
.gallery-section .container > .section-title,
.gallery-section .container > .section-subtitle,
.location-section .container > .section-tag,
.location-section .container > .section-title {
    display: block;
    text-align: center;
}

/* ============ PROMOS ============ */
.promos-section {
    padding: 90px 0;
    background: var(--crema);
}

.promos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Slider styles for promos and menu */
.promos-slider-container, .menu-slider-container {
    position: relative;
    padding-top: 40px;
    margin-top: -40px;
}

.promos-slider-wrapper, .menu-slider-wrapper {
    overflow: hidden;
    padding-top: 30px;
    margin-top: -30px;
}

.promos-slider-track, .menu-slider-track {
    display: flex;
    gap: 18px;
    transition: transform 0.5s ease-in-out;
    padding-top: 10px;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: var(--rojo);
    color: #fff;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: background 0.25s, transform 0.25s;
}

.slider-btn:hover {
    background: var(--rojo-oscuro);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.slider-prev {
    left: 10px;
}

.slider-btn.slider-next {
    right: 10px;
}

.promos-slider-container .slider-btn.slider-prev,
.menu-slider-container .slider-btn.slider-prev {
    left: 10px;
}

.promos-slider-container .slider-btn.slider-next,
.menu-slider-container .slider-btn.slider-next {
    right: 10px;
}

.promo-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--sombra);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: visible;
}

.promo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(28,27,24,0.18);
}

.promo-featured {
    border: 3px solid var(--amarillo);
}

.promo-ribbon {
    position: absolute;
    top: 18px;
    right: -8px;
    background: var(--amarillo);
    color: var(--negro);
    font-weight: 700;
    font-size: 0.78rem;
    padding: 6px 20px;
    border-radius: 4px 0 0 4px;
    z-index: 5;
    box-shadow: -2px 3px 8px rgba(0,0,0,0.2);
}

.promo-image,
.menu-image {
    /* Todas las imágenes de promos y menú mantienen el mismo formato cuadrado que Instagram. */
    aspect-ratio: 1 / 1;
    position: relative;
    border-radius: 20px 20px 0 0;
    overflow: visible;
}

.promo-image img,
.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
    display: block;
    transition: transform 0.4s;
}

.promo-card:hover .promo-image img {
    transform: scale(1.06);
}

/* ============ MOTOR DE HUMO Y VAPOR REALISTA (CANVAS + ZIGZAG + VOLUMÉTRICO) ============ */
.realistic-smoke-canvas {
    position: absolute;
    top: -150px;
    left: -30px;
    width: calc(100% + 60px);
    height: calc(100% + 150px);
    pointer-events: none;
    z-index: 15;
    filter: blur(5px);
    -webkit-filter: blur(5px);
}

.promo-body {
    padding: 26px;
}

.promo-body h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--negro);
    margin-bottom: 12px;
}

.promo-body p {
    color: var(--gris);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.promo-list {
    margin-bottom: 16px;
}

.promo-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--texto);
    margin-bottom: 8px;
}

.promo-list i {
    color: var(--rojo);
    font-size: 0.85rem;
}

.promo-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.promo-price {
    font-family: var(--font-display);
    font-size: 1.7rem;
    color: var(--rojo);
    font-weight: 700;
}

.promo-note {
    display: block;
    margin-top: 14px;
    font-size: 0.72rem;
    color: #a49c8c;
}

.btn-small {
    display: inline-block;
    background: var(--rojo);
    color: #fff;
    padding: 10px 22px;
    border-radius: 24px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.25s, transform 0.25s;
}

.btn-small:hover {
    background: var(--rojo-oscuro);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--rojo);
    border: 2px solid var(--rojo);
}

.btn-outline:hover {
    background: var(--rojo);
    color: #fff;
}

/* ============ MENU ============ */
.menu-section {
    padding: 90px 0;
    background: var(--crema-osc);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Menu slider specific styles - show 3 cards at a time on desktop */
.menu-slider-track .menu-card {
    width: calc((100% - 36px) / 3);
    min-width: calc((100% - 36px) / 3);
    max-width: calc((100% - 36px) / 3);
    flex: 0 0 calc((100% - 36px) / 3);
    flex-shrink: 0;
    box-sizing: border-box;
}

/* Promos slider - show 3 cards at a time on desktop */
.promos-slider-track .promo-card {
    width: calc((100% - 36px) / 3);
    min-width: calc((100% - 36px) / 3);
    max-width: calc((100% - 36px) / 3);
    flex: 0 0 calc((100% - 36px) / 3);
    flex-shrink: 0;
    box-sizing: border-box;
}

.menu-card {
    background: #fff;
    border-radius: 18px;
    overflow: visible;
    box-shadow: 0 8px 24px var(--sombra);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(28,27,24,0.16);
}



.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

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

.menu-card-body {
    padding: 22px;
}

.menu-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--negro);
    margin-bottom: 8px;
}

.menu-card-body p {
    color: var(--gris);
    font-size: 0.9rem;
    margin-bottom: 14px;
    min-height: 44px;
}

.price {
    display: inline-block;
    background: rgba(200,32,47,0.08);
    color: var(--rojo);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 6px 14px;
    border-radius: 16px;
}

/* ============ EMPANADAS ============ */
.empanadas-section {
    padding: 90px 0;
    background: var(--crema);
}

.empanadas-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
    overflow: visible;
}

.empanadas-img {
    position: relative;
    border-radius: 22px;
    overflow: visible;
    box-shadow: 0 20px 40px var(--sombra);
}

.empanadas-img img {
    width: 100%;
    border-radius: 22px;
    height: 380px;
    object-fit: cover;
    display: block;
    filter: contrast(1.08) saturate(1.12) brightness(1.03);
    image-rendering: -webkit-optimize-contrast;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.empanadas-img:hover img {
    transform: scale(1.04);
}

.empanadas-img::after {
    content: '';
    position: absolute;
    top: -60%;
    left: -120%;
    width: 70%;
    height: 220%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.42) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(28deg);
    pointer-events: none;
    animation: empanadasImageShine 6s ease-in-out infinite 2s;
    z-index: 3;
}

@keyframes empanadasImageShine {
    0%, 60% {
        left: -120%;
        opacity: 0;
    }
    65% {
        opacity: 1;
    }
    100% {
        left: 200%;
        opacity: 0;
    }
}

.empanadas-text p {
    color: var(--gris);
    margin-bottom: 22px;
}

.empanadas-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 30px;
}

.empanadas-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--texto);
}

.empanadas-list i {
    color: var(--rojo);
    width: 22px;
    text-align: center;
}

/* ============ GALLERY ============ */
.gallery-section {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--negro) 0%, #2b241c 55%, var(--rojo-oscuro) 130%);
}

.gallery-section .section-title {
    color: #fff;
}

.gallery-section .section-subtitle {
    color: #b8b1a2;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 1/1;
    display: block;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(200, 32, 47, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 1.8rem;
    color: #fff;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-cta {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

/* ============ ABOUT ============ */
.about-section {
    padding: 90px 0;
    background: var(--crema-osc);
}

.about-content {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 40px var(--sombra);
}

.about-image-wrapper img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    filter: contrast(1.08) saturate(1.12) brightness(1.03);
    image-rendering: -webkit-optimize-contrast;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-image-wrapper:hover img {
    transform: scale(1.04);
}

.about-image-wrapper::after {
    content: '';
    position: absolute;
    top: -60%;
    left: -120%;
    width: 70%;
    height: 220%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.42) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(28deg);
    pointer-events: none;
    animation: aboutImageShine 6s ease-in-out infinite 4s;
    z-index: 2;
}

@keyframes aboutImageShine {
    0%, 60% {
        left: -120%;
        opacity: 0;
    }
    65% {
        opacity: 1;
    }
    100% {
        left: 200%;
        opacity: 0;
    }
}

.about-image-badge {
    position: absolute;
    bottom: -25px;
    right: -25px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--crema-osc);
    box-shadow: 0 10px 24px rgba(0,0,0,0.25);
    z-index: 4;
}

.about-image-badge img {
    height: 100%;
    border-radius: 0;
}

.about-text p {
    color: var(--gris);
    margin-bottom: 18px;
}

.about-stats {
    display: flex;
    gap: 36px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--rojo);
    font-weight: 700;
}

.stat-label {
    font-size: 0.82rem;
    color: var(--gris);
    font-weight: 500;
}

/* ============ LOCATION / CONTACT ============ */
.location-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #3d070b 0%, #540c12 50%, #691017 100%);
    text-align: center;
}

.location-section .container > .section-tag,
.location-section .container > .section-title {
    margin-bottom: 12px;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    perspective: 1200px;
}

.location-card {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 20px;
    padding: 38px 26px;
    color: #fff;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    transform-style: preserve-3d;
    backface-visibility: visible;
    will-change: transform;
    transition: background 0.35s ease, box-shadow 0.35s ease;
}

.location-card:hover {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
    animation-play-state: paused;
}

@keyframes flipLocationCard1 {
    0% { transform: rotateY(0deg); }
    10% { transform: rotateY(360deg); }
    10.01%, 100% { transform: rotateY(0deg); }
}

@keyframes flipLocationCard2 {
    0%, 10% { transform: rotateY(0deg); }
    20% { transform: rotateY(360deg); }
    20.01%, 100% { transform: rotateY(0deg); }
}

@keyframes flipLocationCard3 {
    0%, 20% { transform: rotateY(0deg); }
    30% { transform: rotateY(360deg); }
    30.01%, 100% { transform: rotateY(0deg); }
}

.location-grid .location-card:nth-child(1) {
    animation: flipLocationCard1 14s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}

.location-grid .location-card:nth-child(2) {
    animation: flipLocationCard2 14s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}

.location-grid .location-card:nth-child(3) {
    animation: flipLocationCard3 14s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}

.location-icon {
    font-size: 1.8rem;
    color: var(--amarillo);
    margin-bottom: 16px;
}

.location-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.location-card p {
    color: #f5e6e6;
    font-size: 0.92rem;
    margin-bottom: 14px;
}

.location-link {
    display: inline-block;
    background: var(--amarillo);
    color: var(--negro);
    padding: 10px 22px;
    border-radius: 22px;
    font-weight: 700;
    font-size: 0.88rem;
    transition: transform 0.25s;
}

.location-link:hover {
    transform: translateY(-2px);
}

.location-social {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 6px;
}

.location-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    font-size: 1.1rem;
    color: #fff;
    transition: background 0.25s, transform 0.25s;
}

.location-social a:hover {
    background: var(--amarillo);
    color: var(--negro);
    transform: translateY(-3px);
}

/* Map container in contact section */
.map-container {
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.map-container iframe {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.map-cta {
    margin-top: 20px;
}

.btn-map-directions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--rojo);
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.25s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.btn-map-directions:hover {
    background: var(--amarillo);
    color: var(--negro);
    transform: translateY(-3px);
}

/* ============ FOOTER ============ */
.footer {
    background: linear-gradient(135deg, var(--negro) 0%, #2b241c 55%, var(--rojo-oscuro) 130%);
    color: #cfc8b8;
    padding: 60px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 14px;
    border: 2px solid var(--rojo);
}

.footer-brand p {
    font-size: 0.88rem;
    color: #a39c8d;
    max-width: 280px;
}

.footer-links h4, .footer-social h4 {
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.05rem;
    margin-bottom: 16px;
}

.footer-links a, .footer-social a {
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #cfc8b8;
    transition: color 0.25s;
}

.footer-links a:hover, .footer-social a:hover {
    color: var(--amarillo);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.82rem;
    color: #8b8474;
}

/* ============ FLOATING BUTTONS ============ */

/* Scroll to top button (pizza slice) - right side */
.scroll-top-btn {
    position: fixed;
    bottom: 26px;
    right: 26px;
    width: 58px;
    height: 58px;
    background: var(--rojo);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 8px 20px rgba(200,32,47,0.5);
    z-index: 998;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, background 0.25s ease;
    animation: pulse 2.4s infinite;
    opacity: 0;
    pointer-events: none;
}

.scroll-top-btn.visible {
    opacity: 1;
    pointer-events: auto;
}

.scroll-top-btn i {
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-top-btn:hover {
    transform: translateY(-4px) scale(1.08);
    background: var(--rojo-oscuro);
}

.scroll-top-btn:hover i {
    transform: rotate(-30deg) scale(1.2);
}

/* WhatsApp button - left side */
.whatsapp-container {
    position: fixed;
    bottom: 26px;
    left: 26px;
    z-index: 999;
}

.whatsapp-float-btn {
    width: 58px;
    height: 58px;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
    animation: pulse-whatsapp 2.4s infinite;
}

.whatsapp-float-btn:hover {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.65);
}

@keyframes pulse {
    0% { box-shadow: 0 8px 20px rgba(200,32,47,0.5); }
    50% { box-shadow: 0 8px 20px rgba(200,32,47,0.5), 0 0 0 10px rgba(200,32,47,0.15); }
    100% { box-shadow: 0 8px 20px rgba(200,32,47,0.5); }
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5), 0 0 0 10px rgba(37, 211, 102, 0.15); }
    100% { box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5); }
}

/* WhatsApp Modal */
.whatsapp-modal {
    display: none;
    position: fixed;
    bottom: 95px;
    left: 26px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    z-index: 1000;
    min-width: 280px;
    padding: 20px;
    animation: slideUp 0.3s ease;
}

.whatsapp-modal.active {
    display: block;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.whatsapp-modal-content h4 {
    font-family: var(--font-display);
    color: #25D366;
    margin-bottom: 10px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.whatsapp-modal-content p {
    color: var(--gris);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.whatsapp-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.whatsapp-option-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #f0fdf4;
    border: 2px solid #25D366;
    border-radius: 12px;
    color: #1a7f4a;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.25s;
    text-decoration: none;
}

.whatsapp-option-btn:hover {
    background: #25D366;
    color: #fff;
    transform: translateX(5px);
}

.whatsapp-option-btn i {
    font-size: 1.1rem;
}

/* ============ BACKGROUND MUSIC FLOATING TOGGLE ============ */
.music-float-btn {
    position: fixed;
    bottom: 26px;
    right: 90px;
    z-index: 998;
    height: 52px;
    padding: 0 16px;
    border-radius: 26px;
    background: rgba(12, 11, 9, 0.88);
    color: #fff;
    border: 1.5px solid rgba(245, 166, 35, 0.45);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.music-float-btn:hover {
    transform: translateY(-3px) scale(1.04);
    background: var(--rojo);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 25px rgba(200, 32, 47, 0.5);
    color: #fff;
}

.music-float-btn.paused {
    background: rgba(12, 11, 9, 0.75);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffd2d6;
}

.music-waves {
    display: flex;
    align-items: flex-end;
    gap: 2.5px;
    height: 14px;
}

.music-waves span {
    display: block;
    width: 2.5px;
    background: var(--amarillo);
    border-radius: 2px;
    animation: musicWave 1.2s infinite ease-in-out;
}

.music-waves span:nth-child(1) { height: 6px; animation-delay: 0.1s; }
.music-waves span:nth-child(2) { height: 14px; animation-delay: 0.3s; }
.music-waves span:nth-child(3) { height: 9px; animation-delay: 0.2s; }

.music-float-btn.paused .music-waves span {
    animation: none;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
}

@keyframes musicWave {
    0%, 100% { height: 4px; }
    50% { height: 14px; }
}

@media (max-width: 768px) {
    .music-float-btn {
        bottom: 22px;
        right: 80px;
        height: 44px;
        padding: 0 12px;
        font-size: 0.75rem;
    }
}

/* ============ SCROLL ANIMATIONS ============ */
.fade-in-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 { transition-delay: 0.08s; }
.stagger-2 { transition-delay: 0.16s; }
.stagger-3 { transition-delay: 0.24s; }
.stagger-4 { transition-delay: 0.32s; }

/* ============ RESPONSIVE ============ */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-tagline {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons, .hero-info-pills {
        justify-content: center;
    }

    .hero-gallery {
        position: relative;
        height: auto;
        min-height: 280px;
        max-width: 480px;
        margin: 35px auto 0;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-img-main {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        border-radius: 22px;
        overflow: hidden;
        box-shadow: 0 20px 45px rgba(0,0,0,0.5);
        border: 4px solid rgba(255,255,255,0.12);
    }

    .hero-img-main img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        display: block;
    }

    .hero-img-small-1 {
        width: 120px;
        bottom: -15px;
        left: -10px;
        border-radius: 14px;
        border: 3px solid var(--crema);
    }

    .hero-img-small-1 img {
        height: 95px;
    }

    .hero-img-small-2 {
        width: 76px;
        height: 76px;
        bottom: -15px;
        right: 0;
        border-radius: 50%;
        overflow: hidden;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 3px solid var(--crema);
    }

    .hero-img-small-2 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        border-radius: 50%;
    }

    /* Tablet: 2 cards in slider */
    .menu-slider-track .menu-card,
    .promos-slider-track .promo-card {
        width: calc((100% - 18px) / 2);
        min-width: calc((100% - 18px) / 2);
        max-width: calc((100% - 18px) / 2);
        flex: 0 0 calc((100% - 18px) / 2);
    }

    .promos-grid, .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .empanadas-container, .about-content {
        grid-template-columns: 1fr;
    }

    .empanadas-img, .about-image {
        order: -1;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 32px 24px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .map-container {
        max-width: 100%;
    }

    .section-tag {
        font-size: 1.25rem;
        padding: 10px 26px;
    }
}

@media (max-width: 768px) {
    body.menu-open {
        overflow: hidden;
    }

    .topbar-container {
        font-size: 0.72rem;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 84%;
        max-width: 320px;
        height: 100vh;
        height: 100dvh;
        background: var(--crema);
        flex-direction: column;
        justify-content: flex-start;
        padding: 20px 20px;
        gap: 8px;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 35px rgba(0,0,0,0.3);
        z-index: 999;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding-bottom: 14px;
        margin-bottom: 8px;
        border-bottom: 2px solid rgba(200, 32, 47, 0.15);
    }

    .nav-menu-brand {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .nav-menu-logo {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid var(--rojo);
    }

    .nav-menu-title {
        font-family: var(--font-display);
        font-size: 1.15rem;
        font-weight: 700;
        color: var(--rojo);
        letter-spacing: 0.5px;
    }

    .nav-menu a {
        font-size: 1.05rem;
        padding: 10px 14px;
        border-radius: 10px;
        width: 100%;
        display: flex;
        align-items: center;
        color: var(--texto);
        transition: all 0.2s;
    }

    .nav-menu a::after,
    .nav-menu a:hover::after {
        display: none !important;
        content: none !important;
    }

    .nav-menu a:not(.btn-order-nav-mobile):hover {
        background: rgba(200, 32, 47, 0.08);
        color: var(--rojo);
        padding-left: 18px;
    }

    .btn-order-nav-mobile {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background: var(--rojo) !important;
        color: #fff !important;
        padding: 12px 20px !important;
        border-radius: 25px;
        font-weight: 700 !important;
        font-size: 0.95rem !important;
        margin-top: 10px;
        text-align: center;
        box-shadow: 0 4px 14px rgba(200, 32, 47, 0.35);
    }

    .btn-order-nav-mobile:hover {
        background: var(--rojo-oscuro) !important;
        color: #fff !important;
        padding: 12px 20px !important;
        transform: translateY(-2px);
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active {
        opacity: 0;
        pointer-events: none;
    }

    .btn-order-nav {
        display: none;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    /* Mobile: EXACTAMENTE 1 SOLO PANEL VISIBLE EN EL SLIDER */
    .promos-slider-container,
    .menu-slider-container {
        padding: 0 4px;
    }

    .promos-slider-track,
    .menu-slider-track {
        gap: 14px;
        touch-action: pan-y;
    }

    .menu-slider-track .menu-card,
    .promos-slider-track .promo-card {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        box-sizing: border-box;
    }

    .slider-btn {
        width: 42px;
        height: 42px;
        font-size: 1.05rem;
        background: rgba(200, 32, 47, 0.92);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        box-shadow: 0 4px 14px rgba(0,0,0,0.35);
    }

    .slider-btn.slider-prev,
    .promos-slider-container .slider-btn.slider-prev,
    .menu-slider-container .slider-btn.slider-prev {
        left: 4px;
    }

    .slider-btn.slider-next,
    .promos-slider-container .slider-btn.slider-next,
    .menu-slider-container .slider-btn.slider-next {
        right: 4px;
    }

    .promos-grid, .menu-grid {
        grid-template-columns: 1fr;
    }

    .section-tag {
        font-size: 1.15rem;
        padding: 9px 24px;
    }

    .section-title {
        font-size: 1.9rem;
    }

    .section-title-left {
        font-size: 1.7rem;
        text-align: center;
    }

    .empanadas-list {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .about-stats {
        justify-content: center;
    }

    /* Adjust floating buttons for mobile */
    .whatsapp-container {
        bottom: 20px;
        left: 20px;
    }

    .scroll-top-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .whatsapp-float-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .whatsapp-modal {
        bottom: 80px;
        left: 20px;
        min-width: 260px;
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .section-tag {
        font-size: 1.05rem;
        padding: 8px 18px;
    }

    .logo-text {
        font-size: 1rem;
    }

    .logo-img {
        width: 42px;
        height: 42px;
    }

    .hero {
        padding: 45px 0 95px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-badge {
        font-size: 0.75rem;
    }

    .hero-gallery {
        max-width: 100%;
        margin: 25px auto 0;
    }

    .hero-img-main img {
        height: 230px;
    }

    .hero-img-small-1 {
        width: 95px;
        bottom: -12px;
        left: -5px;
    }

    .hero-img-small-1 img {
        height: 75px;
    }

    .hero-img-small-2 {
        width: 62px;
        height: 62px;
        bottom: -10px;
        right: -2px;
        border-radius: 50%;
        overflow: hidden;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 3px solid var(--crema);
    }

    .hero-img-small-2 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        border-radius: 50%;
    }

    .btn-primary, .btn-secondary {
        padding: 13px 22px;
        font-size: 0.9rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 28px 16px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}
