/* ═══════════════════════════════════════════════════
   CEVICHE EXPRESS - STYLES
   Paleta: Naranja #E8751A + Dark Navy #1a2332 + Blanco
   Tipografías: Playfair Display + Inter
   ═══════════════════════════════════════════════════ */

/* ─── CSS Variables ─────────────────────────────── */
:root {
    /* Colors */
    --color-primary: #E8751A;
    --color-primary-dark: #c5600f;
    --color-primary-light: #f5923f;
    --color-primary-rgb: 232, 117, 26;
    --color-navy: #1a2332;
    --color-navy-light: #243044;
    --color-navy-rgb: 26, 35, 50;
    --color-dark: #0f1520;
    --color-white: #ffffff;
    --color-off-white: #f8f6f3;
    --color-gray-100: #f5f5f5;
    --color-gray-200: #e8e8e8;
    --color-gray-300: #d1d1d1;
    --color-gray-500: #888888;
    --color-gray-700: #444444;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-whatsapp: #25D366;
    --color-whatsapp-dark: #1da851;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Sizes */
    --navbar-height: 80px;
    --container-max: 1200px;
    --container-padding: 20px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.2);
    --shadow-primary: 0 4px 20px rgba(232, 117, 26, 0.35);

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-fast: 0.2s var(--ease);
    --transition-base: 0.3s var(--ease);
    --transition-slow: 0.5s var(--ease);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 50%;
}

/* ─── Reset & Base ──────────────────────────────── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

[hidden] {
    display: none !important;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.no-scroll {
    overflow: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* ─── Container ─────────────────────────────────── */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ─── Section Base ──────────────────────────────── */
.section {
    padding: 100px 0;
}

.section__header {
    margin-bottom: 60px;
}

.section__header--center {
    text-align: center;
}

.section__label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.section__label--center {
    justify-content: center;
}

.section__label span {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary);
}

.section__label-line {
    width: 40px;
    height: 2px;
    background: var(--color-primary);
}

.section__label-line--light {
    background: var(--color-primary-light);
}

.section__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-navy);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section__subtitle {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.text-accent {
    color: var(--color-primary);
}

.text-light {
    color: var(--color-white) !important;
}

/* ─── Buttons ───────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn--primary {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.btn--primary:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.btn--secondary {
    background: transparent;
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.4);
}

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

.btn--full {
    width: 100%;
}

.btn--large {
    padding: 16px 36px;
    font-size: 16px;
}

/* ═══════════════════════════════════════════════════
   PRELOADER
   ═══════════════════════════════════════════════════ */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    min-height: 100svh;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    touch-action: none;
    overscroll-behavior: none;
    transition: opacity 0.5s var(--ease), visibility 0.5s var(--ease);
}

.preloader.hidden {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.preloader__content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Pantalla completa, 16:9 contenido visible (contain) en móvil y desktop */
.preloader__media,
.preloader__logo {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    border-radius: 0;
    object-fit: contain;
    object-position: center center;
    background: #000;
    pointer-events: none;
}

.preloader__skip {
    position: absolute;
    bottom: max(18px, env(safe-area-inset-bottom, 0px));
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    padding: 10px 20px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    opacity: 0;
    animation: preloaderSkipIn 0.35s var(--ease) 1.1s forwards;
}

.preloader__skip:hover,
.preloader__skip:focus-visible {
    background: rgba(232, 117, 26, 0.9);
    border-color: rgba(232, 117, 26, 0.9);
    color: #fff;
}

@keyframes preloaderSkipIn {
    to { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    .preloader__skip {
        animation: none;
        opacity: 1;
    }
}

.preloader__bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
    border-radius: 4px;
    animation: preloaderFill 1.4s var(--ease) forwards;
}

.preloader__text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    letter-spacing: 1px;
}

@keyframes preloaderFill {
    to { width: 100%; }
}

/* ═══════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--navbar-height);
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(26, 35, 50, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.navbar__brand {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.navbar__logo-wrap {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    border: 2px solid var(--color-primary);
    overflow: hidden;
    flex-shrink: 0;
}

.navbar__logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.navbar__brand-text {
    display: flex;
    flex-direction: column;
}

.navbar__brand-name {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.2;
}

.navbar__brand-sub {
    font-size: 11px;
    color: var(--color-primary-light);
    letter-spacing: 0.5px;
}

.navbar__list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar__link {
    position: relative;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition-fast);
}

.navbar__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--color-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-base);
}

.navbar__link:hover,
.navbar__link.active {
    color: var(--color-white);
}

.navbar__link:hover::after,
.navbar__link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.navbar__cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    margin-left: 8px;
}

.navbar__cta-btn:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

/* Hamburger */
.navbar__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 36px;
    height: 36px;
    z-index: 1001;
}

.navbar__hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.navbar__hamburger.active .navbar__hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.navbar__hamburger.active .navbar__hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.navbar__hamburger.active .navbar__hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Overlay */
.navbar__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.navbar__overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ═══════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurns 25s ease-in-out infinite alternate;
}

@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 35, 50, 0.85) 0%,
        rgba(26, 35, 50, 0.6) 50%,
        rgba(232, 117, 26, 0.3) 100%
    );
    z-index: 1;
}

.hero__particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.hero__particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: var(--radius-full);
    opacity: 0;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0.5);
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        opacity: 0;
        transform: translateY(-110vh) scale(1);
    }
}

.hero__content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 120px 0 80px;
}

/* Hero Badge */
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xl);
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: #25D366;
    border-radius: var(--radius-full);
    animation: pulse 2s ease-in-out infinite;
}

/* Hero Title */
.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero__title-accent {
    color: var(--color-primary);
    position: relative;
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.75);
    max-width: 650px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

/* Hero CTAs */
.hero__ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

/* Hero Schedule */
.hero__schedule {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

.hero__schedule svg {
    stroke: var(--color-primary-light);
    flex-shrink: 0;
}

/* Hero Reveal Animation */
.reveal-hero {
    opacity: 0;
    transform: translateY(30px);
    animation: revealHero 0.8s var(--ease) forwards;
    animation-delay: var(--delay, 0s);
}

@keyframes revealHero {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Indicator */
.hero__scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition-fast);
}

.hero__scroll-indicator:hover {
    color: var(--color-primary-light);
}

.hero__scroll-text {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero__scroll-arrow {
    animation: scrollFloat 2s ease-in-out infinite;
}

@keyframes scrollFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* ═══════════════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════════════ */
.about {
    background: var(--color-off-white);
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about__image-wrap {
    position: relative;
}

.about__image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about__image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.about__image-frame:hover .about__image {
    transform: scale(1.05);
}

/* Decorative corners */
.about__image-corner {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 3px solid var(--color-primary);
    pointer-events: none;
    z-index: 2;
}

    .faq {
        background: var(--color-white);
    }

    .faq__list {
        display: grid;
        gap: 16px;
        margin-top: 40px;
    }

    .faq__item {
        background: var(--color-off-white);
        border-radius: var(--radius-lg);
        box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
        overflow: hidden;
    }

    .faq__question {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 22px 24px;
        background: transparent;
        border: none;
        color: var(--color-title);
        font-size: 1rem;
        font-weight: 700;
        text-align: left;
        cursor: pointer;
        transition: background 0.3s ease;
    }

    .faq__question:hover {
        background: rgba(0, 0, 0, 0.03);
    }

    .faq__icon {
        font-size: 1.4rem;
        transition: transform 0.3s ease;
    }

    .faq__item.open .faq__icon {
        transform: rotate(45deg);
    }

    .faq__answer {
        max-height: 0;
        padding: 0 24px;
        overflow: hidden;
        transition: max-height 0.35s ease, padding 0.35s ease;
        color: var(--color-text);
        font-size: 0.95rem;
        line-height: 1.8;
    }

    .faq__item.open .faq__answer {
        max-height: 1000px;
        padding: 0 24px 24px;
    }

.about__image-corner--br {
    bottom: -10px;
    right: -10px;
    border-left: none;
    border-top: none;
    border-radius: 0 0 8px 0;
}

/* Floating badge */
.about__badge-float {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 20px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
    z-index: 3;
}

.about__badge-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.about__badge-label {
    font-size: 12px;
    line-height: 1.3;
    opacity: 0.9;
}

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

/* About Content */
.about__text {
    color: var(--color-text-light);
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.7;
}

.about__text strong {
    color: var(--color-navy);
}

/* Values */
.about__values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 32px 0;
}

.about__value {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.about__value-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    border-radius: var(--radius-sm);
    color: var(--color-white);
    flex-shrink: 0;
}

.about__value-icon img {
    width: 99%;
    height: auto;
}

.about__value h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 4px;
}

.about__value p {
    font-size: 13px;
    color: var(--color-text-light);
    line-height: 1.5;
}

/* Counters */
.about__counters {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding-top: 32px;
    border-top: 1px solid var(--color-gray-200);
}

.about__counter {
    text-align: center;
}

.about__counter-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 4px;
}

.about__counter-label {
    font-size: 12px;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════════════════
   MENU / SERVICES SECTION
   ═══════════════════════════════════════════════════ */
.menu {
    background: var(--color-white);
}

.menu__card {
    position: relative;
    background: #5fd1d3;
    border: 1px solid rgba(var(--color-primary-rgb), 0.32);
    border-radius: var(--radius-lg);
    padding: 36px 28px 28px;
    transition: all var(--transition-base);
    overflow: hidden;
}

.menu__card:hover {
    transform: translateY(-8px);
    background: #5fd1d3;
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.menu__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}


.menu__card-top-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.menu__card:hover .menu__card-top-bar {
    transform: scaleX(1);
}

.menu__card-number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(232, 117, 26, 0.08);
    line-height: 1;
}

/* ─── Círculo Naranja Precio Menú Ejecutivo ─── */
.menu__price-badge {
    position: absolute;
    top: 20px;
    right: 22px;
    width: 104px;
    height: 104px;
    border-radius: 50%;
    background: #E8751A;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Inter', var(--font-body), sans-serif;
    font-size: 2.1rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.5px;
    transform: rotate(-12deg);
    box-shadow: 0 8px 24px rgba(232, 117, 26, 0.45);
    z-index: 5;
    user-select: none;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
    animation: badge-heartbeat 2s ease-in-out infinite;
    will-change: transform;
}

/* Anillo que se expande con cada latido */
.menu__price-badge::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(232, 117, 26, 0.6);
    animation: badge-heartbeat-ring 2s ease-out infinite;
    pointer-events: none;
}

/* Latido doble (lub-dub) manteniendo la inclinación del círculo */
@keyframes badge-heartbeat {
    0%,
    100% {
        transform: rotate(-12deg) scale(1);
        box-shadow: 0 8px 24px rgba(232, 117, 26, 0.45);
    }
    10% {
        transform: rotate(-12deg) scale(1.09);
        box-shadow: 0 12px 30px rgba(232, 117, 26, 0.6);
    }
    20% {
        transform: rotate(-12deg) scale(1.01);
    }
    30% {
        transform: rotate(-12deg) scale(1.06);
        box-shadow: 0 10px 28px rgba(232, 117, 26, 0.55);
    }
    45% {
        transform: rotate(-12deg) scale(1);
        box-shadow: 0 8px 24px rgba(232, 117, 26, 0.45);
    }
}

@keyframes badge-heartbeat-ring {
    0% {
        opacity: 0.55;
        transform: scale(1);
    }
    35% {
        opacity: 0;
        transform: scale(1.45);
    }
    100% {
        opacity: 0;
        transform: scale(1.45);
    }
}

/* Al pasar el mouse se detiene el latido y toma el estado de hover */
.menu__card:hover .menu__price-badge {
    animation: none;
    transform: rotate(-8deg) scale(1.06);
    box-shadow: 0 12px 30px rgba(232, 117, 26, 0.55);
}

.menu__card:hover .menu__price-badge::after {
    animation: none;
    opacity: 0;
}

/* Accesibilidad: sin animación si el usuario prefiere menos movimiento */
@media (prefers-reduced-motion: reduce) {
    .menu__price-badge,
    .menu__price-badge::after {
        animation: none;
    }
}

@media (max-width: 480px) {
    .menu__price-badge {
        width: 88px;
        height: 88px;
        font-size: 1.85rem;
        top: 16px;
        right: 16px;
    }
}

.menu__card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    border-radius: var(--radius-md);
    color: var(--color-white);
    margin-bottom: 20px;
}

.menu__card-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 16px;
}

.menu__card-list {
    margin-bottom: 24px;
}

.menu__card-list li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-left: 20px;
    padding-bottom: 10px;
    padding-top: 2px;
    font-size: 14px;
    color: #ffff;
}

.menu__card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: var(--radius-full);
    flex-shrink: 0;
}

.menu__card-item-name {
    flex: 1;
    line-height: 1.4;
}

.menu__card-price {
    display: none !important;
}

.menu__card-price:empty {
    display: none;
}

.menu__card-price--accent {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: var(--color-white);
    border-color: transparent;
    box-shadow: 0 2px 10px rgba(232, 117, 26, 0.35);
}

.menu__card-price--navy {
    background: var(--color-navy);
    color: var(--color-white);
    border-color: transparent;
    box-shadow: 0 2px 10px rgba(26, 35, 50, 0.25);
}

.menu__card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    transition: all var(--transition-fast);
}

.menu__card-link svg {
    transition: transform var(--transition-fast);
}

.menu__card-link:hover {
    color: var(--color-primary-dark);
}

.menu__card-link:hover svg {
    transform: translateX(4px);
}

.reviews__marquee {
    overflow: hidden;
    margin-top: 32px;
}

.reviews__track {
    display: flex;
    align-items: stretch;
    gap: 22px;
    transition: transform 0.6s ease;
    will-change: transform;
}

.review__card {
    flex: 0 0 calc((100% - 44px) / 3);
    min-width: calc((100% - 44px) / 3);
    max-width: calc((100% - 44px) / 3);
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-soft);
}

.review__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.review__stars {
    color: #f6b93b;
    font-size: 1rem;
    letter-spacing: 0.1em;
}

.review__date {
    font-size: 13px;
    color: var(--color-text-light);
}

.review__card p {
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 18px;
}

.review__author {
    display: inline-block;
    font-weight: 700;
    color: var(--color-navy);
}

.reviews__actions {
    margin-top: 28px;
    text-align: center;
}

@media (max-width: 1100px) {
    .review__card {
        flex: 0 0 calc((100% - 22px) / 2);
        max-width: calc((100% - 22px) / 2);
        min-width: calc((100% - 22px) / 2);
    }
}

@media (max-width: 700px) {
    .review__card {
        flex: 0 0 100%;
        max-width: 100%;
        min-width: 100%;
    }
}

.products-congelado__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.products-congelado__image-wrap {
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.products-congelado__image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.products-congelado__content h3 {
    font-size: 2rem;
    margin-bottom: 18px;
}

.products-congelado__content p {
    max-width: 560px;
    margin-bottom: 24px;
    color: var(--color-text);
}

.products-congelado__list {
    margin-bottom: 28px;
    list-style: none;
    padding-left: 0;
}

.products-congelado__list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: var(--color-text-light);
}

.products-congelado__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    background: var(--color-primary);
    border-radius: var(--radius-full);
}

.products-congelado__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.products-congelado__card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-align: center;
    padding: 12px;
    box-shadow: var(--shadow-soft);
}

.products-congelado__card-image {
    width: 100%;
    display: block;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: 14px;
}

.products-congelado__card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}

@media (max-width: 1000px) {
    .products-congelado__cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 650px) {
    .products-congelado__grid {
        grid-template-columns: 1fr;
    }

    .products-congelado__cards {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════
   GALLERY / CAROUSEL SECTION
   ═══════════════════════════════════════════════════ */
.gallery {
    background: var(--color-off-white);
    overflow: hidden;
}

.gallery__carousel-wrap {
    overflow: hidden;
    margin-top: 20px;
}

.gallery__carousel {
    overflow: hidden;
    cursor: grab;
}

.gallery__carousel:active {
    cursor: grabbing;
}

.gallery__track {
    display: flex;
    gap: 20px;
    animation: carouselScroll 40s linear infinite;
    width: max-content;
}

.gallery__carousel:hover .gallery__track {
    animation-play-state: paused;
}

@keyframes carouselScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.gallery__slide {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    flex-shrink: 0;
}

.gallery__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.gallery__slide:hover img {
    transform: scale(1.1);
}

.gallery__slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 35, 50, 0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.gallery__slide:hover .gallery__slide-overlay {
    opacity: 1;
}

.gallery__slide-overlay span {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
}

/* ═══════════════════════════════════════════════════
   FEATURES SECTION
   ═══════════════════════════════════════════════════ */
.features {
    background: var(--color-navy);
    position: relative;
    overflow: hidden;
}

.features__bg-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(232, 117, 26, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(232, 117, 26, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

.features__item {
    text-align: center;
    padding: 40px 24px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--transition-base);
}

.features__item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(232, 117, 26, 0.3);
    transform: scale(1.03);
}

.features__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-full);
    color: var(--color-primary);
    margin: 0 auto 20px;
    transition: all var(--transition-base);
}

.features__item:hover .features__icon {
    background: var(--color-primary);
    color: var(--color-white);
}

.features__item h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 12px;
}

.features__item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════════════ */
.cta-banner {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.cta-banner__bg {
    position: absolute;
    inset: 0;
}

.cta-banner__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 35, 50, 0.9) 0%,
        rgba(232, 117, 26, 0.6) 100%
    );
}

.cta-banner__content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-banner__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 16px;
}

.cta-banner__text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 36px;
}

.cta-banner__buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════
   LOCATIONS SECTION
   ═══════════════════════════════════════════════════ */
.locations {
    background: var(--color-off-white);
}

.locations__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.locations__card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-gray-200);
    transition: all var(--transition-base);
}

.locations__card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.locations__card-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.locations__card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    border-radius: var(--radius-sm);
    color: var(--color-white);
    flex-shrink: 0;
}

.locations__card-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 4px;
}

.locations__card-address {
    font-size: 14px;
    color: var(--color-text-light);
}

.locations__map {
    margin-bottom: 20px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.locations__card-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.locations__info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--color-text-light);
}

.locations__info-item svg {
    stroke: var(--color-primary);
    flex-shrink: 0;
}

.locations__card-note {
    font-size: 13px;
    color: var(--color-text-light);
    line-height: 1.6;
    margin: 0 0 16px;
}

.seo-zones {
    margin-top: 48px;
    padding: 32px 28px;
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.seo-zones__title {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 12px;
}

.seo-zones__text {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 14px;
}

.seo-zones__text a {
    color: var(--color-primary);
    font-weight: 600;
}

.seo-zones__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 24px;
    margin: 0 0 16px;
}

.seo-zones__list li {
    position: relative;
    padding-left: 18px;
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.55;
}

.seo-zones__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-primary);
}

@media (max-width: 700px) {
    .seo-zones {
        padding: 24px 18px;
    }

    .seo-zones__list {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════════════ */
.contact {
    background: var(--color-white);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: flex-start;
}

.contact__card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    transition: all var(--transition-base);
}

.contact__card:hover {
    transform: translateX(8px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-sm);
}

.contact__card-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 117, 26, 0.1);
    border-radius: var(--radius-sm);
    color: var(--color-primary);
    flex-shrink: 0;
}

.contact__card h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 4px;
}

.contact__card p {
    font-size: 13px;
    color: var(--color-text-light);
    line-height: 1.6;
}

.contact__card a {
    color: var(--color-primary);
    font-weight: 500;
}

.contact__card a:hover {
    color: var(--color-primary-dark);
}

.contact__socials {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.contact__social-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-sm);
    color: var(--color-text-light);
    transition: all var(--transition-base);
}

.contact__social-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* Contact Form */
.contact__form-wrap {
    background: var(--color-off-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--color-gray-200);
}

.contact__form-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 8px;
}

.contact__form-desc {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 28px;
}

.contact__form-group {
    margin-bottom: 20px;
}

.contact__form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 8px;
}

.contact__form-group input,
.contact__form-group textarea,
.contact__form-group select {
    width: 100%;
    padding: 14px 16px;
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-sm);
    color: var(--color-text);
    transition: all var(--transition-fast);
    outline: none;
}

.contact__form-group input:focus,
.contact__form-group textarea:focus,
.contact__form-group select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(232, 117, 26, 0.15);
}

.contact__form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.contact__select-wrap {
    position: relative;
}

.contact__select-wrap select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 40px;
    cursor: pointer;
}

.contact__select-arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--color-gray-500);
}

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.footer {
    background: var(--color-navy);
    padding: 60px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer__brand-logo img {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    border: 2px solid var(--color-primary);
    object-fit: cover;
}

.footer__brand-logo h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-white);
}

.footer__brand-logo span {
    font-size: 12px;
    color: var(--color-primary-light);
}

.footer__brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer__socials {
    display: flex;
    gap: 12px;
}

.footer__socials a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--transition-base);
}

.footer__socials a:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.footer__col h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer__col ul li {
    margin-bottom: 10px;
}

.footer__col ul a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    transition: all var(--transition-fast);
}

.footer__col ul a:hover {
    color: var(--color-primary-light);
    padding-left: 4px;
}

.footer__contact-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
}

.footer__contact-list svg {
    stroke: var(--color-primary);
    flex-shrink: 0;
}

.footer__bottom {
    padding: 24px 0;
    text-align: center;
}

.footer__bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

/* ═══════════════════════════════════════════════════
   WHATSAPP FLOAT BUTTON
   ═══════════════════════════════════════════════════ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.5);
    transition: all var(--transition-base);
}

.whatsapp-float.visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.whatsapp-float__btn {
    width: 60px;
    height: 60px;
    background: var(--color-whatsapp);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all var(--transition-base);
    animation: whatsappPulse 2s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.whatsapp-float__btn:hover {
    background: var(--color-whatsapp-dark);
    transform: scale(1.1);
}

.whatsapp-float__close {
    display: none;
}

.whatsapp-float.open .whatsapp-float__icon {
    display: none;
}

.whatsapp-float.open .whatsapp-float__close {
    display: block;
}

.whatsapp-float.open .whatsapp-float__btn {
    animation: none;
    background: #e74c3c;
    box-shadow: 0 4px 20px rgba(231, 76, 60, 0.4);
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 40px rgba(37, 211, 102, 0.6); }
}

/* Tooltip */
.whatsapp-float__tooltip {
    position: absolute;
    right: 72px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-navy);
    color: var(--color-white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    pointer-events: none;
}

.whatsapp-float__tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--color-navy);
}

.whatsapp-float:not(.open):hover .whatsapp-float__tooltip {
    opacity: 1;
    visibility: visible;
}

/* Options popup */
.whatsapp-float__options {
    position: absolute;
    bottom: 72px;
    right: 0;
    width: 300px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.95);
    transform-origin: bottom right;
    transition: all var(--transition-base);
}

.whatsapp-float.open .whatsapp-float__options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.whatsapp-float__options-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--color-whatsapp);
    color: var(--color-white);
}

.whatsapp-float__options-header img {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    border: 2px solid rgba(255, 255, 255, 0.3);
    object-fit: cover;
}

.whatsapp-float__options-header strong {
    display: block;
    font-size: 15px;
}

.whatsapp-float__options-header span {
    font-size: 12px;
    opacity: 0.9;
}

.whatsapp-float__option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--color-gray-100);
    transition: all var(--transition-fast);
}

.whatsapp-float__option:last-child {
    border-bottom: none;
}

.whatsapp-float__option:hover {
    background: var(--color-gray-100);
}

.whatsapp-float__option-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 117, 26, 0.1);
    border-radius: var(--radius-full);
    color: var(--color-primary);
    flex-shrink: 0;
}

.whatsapp-float__option strong {
    display: block;
    font-size: 14px;
    color: var(--color-navy);
}

.whatsapp-float__option span {
    font-size: 12px;
    color: var(--color-text-light);
}

.whatsapp-float__option > svg {
    margin-left: auto;
    color: var(--color-gray-300);
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════
   BACK TO TOP
   ═══════════════════════════════════════════════════ */
.back-to-top {
    position: fixed;
    bottom: 28px;
    left: 28px;
    width: 44px;
    height: 44px;
    background: var(--color-navy);
    color: var(--color-white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    z-index: 800;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--color-primary);
    transform: translateY(-4px);
}

/* ═══════════════════════════════════════════════════
   SCROLL REVEAL ANIMATION
   ═══════════════════════════════════════════════════ */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════ */
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE - Tablet (1024px)
   ═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .about__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about__badge-float {
        right: 20px;
    }

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

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

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

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

/* ═══════════════════════════════════════════════════
   RESPONSIVE - Mobile (768px)
   ═══════════════════════════════════════════════════ */
@media (max-width: 768px) {
    :root {
        --navbar-height: 70px;
    }

    /* Intro 16:9: ocupa el viewport sin recortar el tiburón ni el texto */
    .preloader {
        min-height: 100svh;
        height: 100dvh;
    }

    .preloader__media,
    .preloader__logo {
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        object-position: center center;
    }

    .preloader__skip {
        bottom: max(16px, calc(env(safe-area-inset-bottom, 0px) + 10px));
    }

    .section {
        padding: 70px 0;
    }

    /* Navbar Mobile */
    .navbar__hamburger {
        display: flex;
    }

    .navbar__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 340px;
        height: 100vh;
        background: var(--color-navy);
        padding: 100px 32px 32px;
        transition: right var(--transition-base);
        z-index: 999;
        overflow-y: auto;
    }

    .navbar__nav.active {
        right: 0;
    }

    .navbar__list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .navbar__link {
        display: block;
        padding: 14px 0;
        font-size: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        width: 100%;
    }

    .navbar__link::after {
        bottom: -1px;
        left: 0;
        right: auto;
        width: 0;
    }

    .navbar__link.active::after,
    .navbar__link:hover::after {
        width: 40px;
    }

    .navbar__cta-btn {
        margin: 20px 0 0 0;
        width: 100%;
        justify-content: center;
    }

    /* Hero */
    .hero__ctas {
        flex-direction: column;
    }

    .hero__ctas .btn {
        width: 100%;
    }

    .hero__scroll-indicator {
        display: none;
    }

    /* About */
    .about__image {
        height: 350px;
    }

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

    /* Menu */
    .menu__grid {
        grid-template-columns: 1fr;
    }

    /* Gallery */
    .gallery__slide {
        width: 250px;
        height: 250px;
    }

    /* Features */
    .features__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* CTA Banner */
    .cta-banner__buttons {
        flex-direction: column;
    }

    .cta-banner__buttons .btn {
        width: 100%;
    }

    /* Footer */
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* WhatsApp */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float__tooltip {
        display: none;
    }

    .whatsapp-float__options {
        width: calc(100vw - 40px);
        right: 0;
    }

    .back-to-top {
        bottom: 20px;
        left: 20px;
    }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE - Small Mobile (480px)
   ═══════════════════════════════════════════════════ */
@media (max-height: 500px) and (orientation: landscape) {
    .preloader__skip {
        bottom: 8px;
        padding: 6px 14px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .section {
        padding: 56px 0;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__badge {
        font-size: 11px;
        padding: 6px 14px;
    }

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

    .about__counter-number {
        font-size: 1.6rem;
    }

    .contact__form-wrap {
        padding: 24px;
    }

    .gallery__slide {
        width: 220px;
        height: 220px;
    }

    .whatsapp-float__btn {
        width: 54px;
        height: 54px;
    }
}
