/* ===========================================
   🌊 CEVICHERÍA EL CARAJITO - DISEÑO MODERNO
   =========================================== */

/* ============================================
   💡 SISTEMA RESPONSIVO PROFESIONAL
   ============================================
   
   🎯 Breakpoints optimizados:
   - 320px  → Móviles pequeños
   - 480px  → Móviles medianos
   - 768px  → Tablets portrait
   - 1024px → Tablets landscape / Laptops pequeñas
   - 1440px → Desktop estándar
   
   ✅ Unidades flexibles usadas:
   - rem/em     → Tipografía y espaciado
   - %/vw/vh    → Layouts y contenedores
   - clamp()    → Valores fluidos min-ideal-max
   - aspect-ratio → Imágenes responsivas
   ============================================ */

/* Reset & Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cyan: #06b6d4;
    --cyan-dark: #0891b2;
    --teal: #14b8a6;
    --orange: #f59e0b;
    --navy: #0f172a;
    --slate: #1e293b;
    --gray: #64748b;
    --white: #ffffff;
    
    --gradient-ocean: linear-gradient(135deg, #06b6d4, #0891b2);
    --gradient-sunset: linear-gradient(135deg, #f59e0b, #fb923c);
    
    --shadow-soft: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-glow: 0 0 40px rgba(6, 182, 212, 0.3);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

@media (max-width: 768px) {
    html {
        font-size: 15px; /* Ajuste sutil para mejorar legibilidad en móvil */
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--slate);
    background: #fafafa;
    overflow-x: hidden;
    position: relative;
}

/* Asegurar que todas las imágenes sean responsive */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Prevenir overflow horizontal */
.container-wide,
.hero-split,
.about-layout,
.contacto-grid,
.footer-top {
    max-width: 100%;
}

/* Background Waves */
.waves-bg {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.wave {
    position: absolute;
    bottom: 0;
    width: 100%;
    animation: wave-flow 20s ease-in-out infinite;
}

.wave-1 {
    animation-delay: 0s;
}

.wave-2 {
    animation-delay: -5s;
}

@keyframes wave-flow {
    0%, 100% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(-50px) translateY(-20px); }
}

/* Cursor Personalizado */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--cyan);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: 0.15s ease-out;
    transform: translate(-50%, -50%);
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: 0.3s ease-out;
    transform: translate(-50%, -50%);
}

/* WhatsApp Floating Button - Ultra Moderno */
.whatsapp-btn {
    position: fixed !important;
    bottom: clamp(20px, 3vh, 30px) !important;
    right: clamp(20px, 3vw, 30px) !important;
    background: linear-gradient(135deg, #25d366 0%, #1faa59 100%);
    color: white;
    width: clamp(50px, 8vw, 60px);
    height: clamp(50px, 8vw, 60px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(28px, 5vw, 34px);
    box-shadow: 
        0 10px 40px rgba(37, 211, 102, 0.5),
        0 0 0 0 rgba(37, 211, 102, 0.4);
    z-index: 10000;
    animation: pulse-whatsapp-modern 2.5s infinite;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow: visible;
}

/* Efecto de anillo pulsante */
.whatsapp-btn::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.4), rgba(31, 170, 89, 0.4));
    opacity: 0;
    animation: ring-pulse 2.5s infinite;
}

/* Efecto de brillo interno */
.whatsapp-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
    opacity: 0.6;
}

.whatsapp-btn i {
    position: relative;
    z-index: 1;
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.whatsapp-btn:hover {
    transform: translateY(-6px) scale(1.15);
    box-shadow: 
        0 15px 50px rgba(37, 211, 102, 0.7),
        0 0 60px rgba(37, 211, 102, 0.5),
        0 0 0 8px rgba(37, 211, 102, 0.2);
}

.whatsapp-btn:hover i {
    transform: rotate(360deg) scale(1.1);
}

.whatsapp-btn:active {
    transform: translateY(-3px) scale(1.05);
}

@keyframes pulse-whatsapp-modern {
    0%, 100% { 
        box-shadow: 
            0 10px 40px rgba(37, 211, 102, 0.5),
            0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    50% { 
        box-shadow: 
            0 15px 50px rgba(37, 211, 102, 0.7),
            0 0 40px rgba(37, 211, 102, 0.6);
    }
}

@keyframes ring-pulse {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
    100% {
        opacity: 0;
        transform: scale(1.5);
    }
}

/* Navegación Lateral Moderna */
.nav-side {
    position: fixed;
    left: clamp(20px, 2vw, 30px);
    top: 50%;
    transform: translateY(-50%);
    z-index: 900;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(2rem, 4vh, 3rem);
    width: clamp(100px, 12vw, 120px); /* Ancho flexible del menú lateral */
}

.nav-logo {
    text-align: center;
}

.logo-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 4px 8px rgba(6, 182, 212, 0.3));
}

.logo-text {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.2rem;
    line-height: 1.1;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.nav-dot {
    width: 12px;
    height: 12px;
    background: var(--gray);
    border-radius: 50%;
    display: block;
    position: relative;
    transition: all 0.3s ease;
}

.nav-dot::before {
    content: attr(data-text);
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    opacity: 0;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate);
    transition: all 0.3s ease;
}

.nav-dot:hover::before {
    opacity: 1;
    left: 30px;
}

.nav-dot.active,
.nav-dot:hover {
    background: var(--cyan);
    transform: scale(1.3);
}

.nav-social {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.nav-social a {
    color: var(--gray);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.nav-social a:hover {
    color: var(--cyan);
    transform: translateY(-3px);
}

/* Submenú de Platos - Dropdown Moderno */
.nav-links .has-submenu {
    position: relative;
}

.has-submenu .nav-dot {
    display: flex;
    align-items: center;
    justify-content: center;
}

.submenu-arrow {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.65rem;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--cyan);
}

.submenu-trigger {
    display: none;
}

.has-submenu:hover .submenu-arrow {
    opacity: 1;
    right: -25px;
}

.submenu-carta {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    min-width: 280px;
    box-shadow: 
        0 20px 60px rgba(15, 23, 42, 0.2),
        0 10px 30px rgba(6, 182, 212, 0.15);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid var(--cyan);
    z-index: 1000;
}

.has-submenu:hover .submenu-carta {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    left: 50px;
}

.submenu-header {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f1f5f9;
}

.submenu-header h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    background: var(--gradient-ocean);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.submenu-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.submenu-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    background: transparent;
}

.submenu-item:hover {
    background: linear-gradient(135deg, 
        rgba(6, 182, 212, 0.1) 0%, 
        rgba(14, 165, 233, 0.05) 100%);
    transform: translateX(5px);
}

.submenu-item.active {
    background: linear-gradient(135deg, 
        rgba(6, 182, 212, 0.15) 0%, 
        rgba(14, 165, 233, 0.1) 100%);
    border-left: 3px solid var(--cyan);
}

.submenu-item.active .submenu-title {
    color: var(--cyan);
    font-weight: 700;
}

.submenu-item i {
    font-size: 1.25rem;
    color: var(--cyan);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(6, 182, 212, 0.1);
    border-radius: 8px;
    flex-shrink: 0;
}

.submenu-item:hover i {
    background: var(--cyan);
    color: white;
}

.submenu-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.submenu-title {
    font-size: 0.925rem;
    font-weight: 600;
    color: var(--navy);
}

.submenu-desc {
    font-size: 0.75rem;
    color: var(--gray);
    font-weight: 400;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    position: fixed;
    top: clamp(16px, 3vw, 24px);
    right: clamp(16px, 3vw, 24px);
    z-index: 1010;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: clamp(48px, 10vw, 56px);
    height: clamp(48px, 10vw, 56px);
    background: white;
    border: 2px solid var(--cyan);
    border-radius: 12px;
    cursor: pointer;
    padding: 10px;
    box-shadow: 
        0 4px 16px rgba(6, 182, 212, 0.2),
        0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: var(--cyan);
    transform: scale(1.05);
    box-shadow: 
        0 6px 20px rgba(6, 182, 212, 0.3),
        0 3px 10px rgba(0, 0, 0, 0.15);
}

.mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    background: var(--cyan);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover span {
    background: white;
}

.mobile-menu-toggle.active {
    background: var(--cyan);
    border-color: var(--cyan);
}

.mobile-menu-toggle.active span {
    background: white;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

body.menu-open {
    overflow: hidden;
}

/* Overlay del menú móvil */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Moderno Split Screen */
.hero-modern {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 4rem 0 3rem;
    position: relative;
}

.hero-split {
    display: grid;
    grid-template-columns: 52% 48%;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
    max-width: 1350px;
    width: 100%;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 3rem);
}

/* Espacio para el menú lateral en pantallas grandes */
@media (min-width: 1025px) {
    .hero-split,
    section > .container-wide,
    .about-layout,
    .bento-grid,
    .contacto-grid,
    .footer-content {
        margin-left: clamp(140px, 12vw, 180px); /* Espaciado dinámico para el menú */
    }
}

.hero-left {
    padding-right: 1rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(6, 182, 212, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--cyan-dark);
}

.badge-star {
    font-size: 1.2rem;
}

.hero-title-modern {
    margin-bottom: 2rem;
}

.title-line {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.1;
}

.title-line:first-child {
    font-size: 2rem;
    color: var(--cyan);
}

.title-line.big {
    font-size: 4.5rem;
    color: var(--navy);
    letter-spacing: -2px;
}

.title-line:last-child {
    font-size: 2.5rem;
    color: var(--slate);
}

.hero-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-modern.primary {
    background: var(--gradient-ocean);
    color: white;
    box-shadow: 0 4px 16px rgba(6, 182, 212, 0.3);
}

.btn-modern.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.4);
}

.btn-modern.secondary {
    background: white;
    color: var(--slate);
    border: 2px solid #e2e8f0;
}

.btn-modern.secondary:hover {
    border-color: var(--cyan);
    color: var(--cyan);
}

.btn-modern.full {
    width: 100%;
    justify-content: center;
}

.btn-modern.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.hero-info {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.info-item i {
    color: var(--cyan);
    font-size: 1.5rem;
}

.info-item div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.info-item strong {
    font-weight: 600;
    color: var(--navy);
    font-size: 0.95rem;
}

.info-item span {
    font-size: 0.875rem;
    color: var(--gray);
}

.info-divider {
    width: 1px;
    height: 40px;
    background: #e2e8f0;
}

/* Hero Right - Imagen con Cards Flotantes */
.hero-right {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-main-img {
    width: 100%;
    aspect-ratio: 16 / 10; /* Reemplaza height fijo con ratio flexible */
    object-fit: cover;
    display: block;
    border-radius: clamp(12px, 2vw, 24px);
}

@media (max-width: 1200px) {
    .hero-main-img {
        aspect-ratio: 4 / 3;
    }
}

@media (max-width: 768px) {
    .hero-main-img {
        aspect-ratio: 3 / 2;
        border-radius: 16px;
    }
}

@media (max-width: 480px) {
    .hero-main-img {
        aspect-ratio: 1 / 1;
    }
}

.hero-float-card {
    position: absolute;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 0.875rem;
    animation: float 3s ease-in-out infinite;
}

.hero-float-card i {
    font-size: 1.5rem;
    color: var(--cyan);
}

.card-1 {
    top: 15%;
    left: -30px;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: -40px;
    animation-delay: 1s;
}

.card-3 {
    bottom: 15%;
    left: -20px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Scroll Hint */
.scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
    font-size: 0.875rem;
    font-weight: 500;
}

.mouse {
    width: 24px;
    height: 36px;
    border: 2px solid var(--gray);
    border-radius: 12px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 3px;
    height: 8px;
    background: var(--cyan);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-down 2s ease-in-out infinite;
}

@keyframes scroll-down {
    0%, 100% { top: 8px; opacity: 1; }
    50% { top: 16px; opacity: 0.5; }
}

/* About Section Moderno */
.about-modern {
    padding: 6rem 0;
    background: white;
}

.about-layout {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 4rem;
    align-items: start;
    max-width: 1300px;
    margin: 0 auto;
}

.section-label-modern {
    display: inline-block;
    background: var(--gradient-ocean);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.section-title-modern {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: var(--gradient-ocean);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 2.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05), rgba(20, 184, 166, 0.05));
    border-radius: 16px;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--cyan);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.3;
    font-weight: 500;
}

.big-text {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--slate);
    margin-bottom: 2rem;
}

.features-modern {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.feat {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.25rem;
    background: white;
    border-radius: 12px;
    border: 2px solid #f1f5f9;
    transition: all 0.3s ease;
}

.feat:hover {
    border-color: var(--cyan);
    transform: translateX(5px);
}

.feat-icon {
    font-size: 2.25rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(20, 184, 166, 0.1));
    border-radius: 12px;
}

.feat h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.35rem;
}

.feat p {
    color: var(--gray);
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Platos - Bento Grid Moderno */
.platos-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

.section-head-center {
    text-align: center;
    margin-bottom: clamp(2rem, 5vw, 4rem);
    max-width: 800px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 clamp(1rem, 3vw, 2rem);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    grid-auto-rows: minmax(200px, auto);
    gap: clamp(0.75rem, 2vw, 1.25rem);
    margin-bottom: 3rem;
    max-width: 1350px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 clamp(1rem, 3vw, 2rem);
}

.bento-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: all 0.4s ease;
}

.bento-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.bento-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-item.medium {
    grid-column: span 2;
}

.bento-item.tall {
    grid-row: span 2;
}

.bento-item.small {
    grid-column: span 1;
}

.bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.3) 60%, transparent 100%);
    transition: all 0.4s ease;
}

.bento-item:hover .bento-overlay {
    background: linear-gradient(to top, rgba(6, 182, 212, 0.9) 0%, rgba(6, 182, 212, 0.4) 60%, transparent 100%);
}

.bento-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    color: white;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.bento-tag {
    display: inline-block;
    background: var(--gradient-sunset);
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.bento-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.bento-content p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.5;
}

.btn-ghost {
    margin-top: 1rem;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
}

.bento-item:hover .btn-ghost {
    opacity: 1;
}

.btn-ghost:hover {
    background: white;
    color: var(--cyan);
}

.center-action {
    text-align: center;
}

/* Reviews Carousel Horizontal Moderno */
.reviews-modern {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    overflow: hidden;
}

.rating-hero {
    margin-top: 2rem;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.stars-big {
    font-size: 2.5rem;
    letter-spacing: 0.25rem;
}

.stars-big .half {
    opacity: 0.5;
}

.rating-num {
    font-size: 4rem;
    font-weight: 700;
    color: var(--cyan);
    line-height: 1;
}

.rating-num span {
    font-size: 2rem;
    color: var(--gray);
}

.rating-hero p {
    color: var(--gray);
    font-size: 1rem;
}

/* Contenedor del Carrusel Horizontal */
.reviews-carousel-3d {
    position: relative;
    max-width: 1400px;
    width: 100%;
    margin: clamp(2rem, 5vw, 4rem) auto 0;
    padding: 0 clamp(40px, 8vw, 80px);
}

.carousel-track-container {
    overflow: hidden;
    position: relative;
    padding: clamp(1.5rem, 4vw, 3rem) 0;
}

.carousel-track {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(1rem, 3vw, 2rem);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 0 calc(50% - min(300px, 45vw));
    scroll-snap-type: x mandatory; /* Añade snap para mejor centrado */
}

/* Tarjetas del Carrusel */
.review-card-modern {
    flex: 0 0 min(600px, 90vw);
    width: 100%;
    background: white;
    border-radius: clamp(16px, 3vw, 24px);
    padding: clamp(1.5rem, 4vw, 3rem);
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
    transition: all 0.4s ease;
    border: 2px solid #e2e8f0;
    opacity: 0.5;
    transform: scale(0.9);
    scroll-snap-align: center; /* Centrado automático */
}

.review-card-modern.active {
    opacity: 1;
    transform: scale(1);
    border-color: var(--cyan);
    box-shadow: 
        0 20px 60px rgba(6, 182, 212, 0.15),
        0 10px 30px rgba(15, 23, 42, 0.1);
    z-index: 10;
}

.card-inner {
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    color: var(--cyan);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 1.5rem;
    font-family: Georgia, serif;
}

.review-text-modern {
    font-size: clamp(0.875rem, 2vw, 1.05rem);
    line-height: 1.75;
    color: var(--slate);
    margin-bottom: clamp(1rem, 3vw, 2rem);
    font-weight: 400;
    min-height: auto;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 2px solid #f1f5f9;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-ocean);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

.reviewer-info strong {
    display: block;
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 0.35rem;
    font-size: 1rem;
}

.stars-small {
    font-size: 0.875rem;
    color: var(--orange);
    letter-spacing: 2px;
}

/* Navegación del Carrusel */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(42px, 8vw, 60px);
    height: clamp(42px, 8vw, 60px);
    border-radius: 50%;
    background: white;
    border: none;
    color: var(--cyan);
    font-size: clamp(1rem, 2vw, 1.5rem);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.15);
}

.carousel-nav:hover {
    background: var(--cyan);
    color: white;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 12px 32px rgba(6, 182, 212, 0.4);
}

.carousel-nav.prev {
    left: clamp(4px, 1vw, 10px);
}

.carousel-nav.next {
    right: clamp(4px, 1vw, 10px);
}

/* Indicadores del Carrusel */
.carousel-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 2.5rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.indicator:hover {
    background: #94a3b8;
    transform: scale(1.2);
}

.indicator.active {
    width: 40px;
    border-radius: 6px;
    background: var(--cyan);
    border-color: var(--cyan);
}

/* Contacto Moderno */
.contacto-modern {
    padding: 6rem 0;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

.contacto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1350px;
    margin: 0 auto;
}

.info-cards {
    margin: 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card-modern {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    border: 2px solid #f1f5f9;
    transition: all 0.3s ease;
}

.info-card-modern:hover {
    border-color: var(--cyan);
    transform: translateX(5px);
}

.icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--gradient-ocean);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-card-modern h4 {
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.info-card-modern p {
    color: var(--gray);
    line-height: 1.6;
}

.info-card-modern a {
    color: var(--cyan);
    font-weight: 600;
}

.map-container {
    margin-top: 2rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.form-container-modern {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    position: relative;
    max-height: 85vh;
    overflow-y: auto;
}

/* Form Header - Más compacto */
.form-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.form-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 1rem;
    background: var(--gradient-ocean);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.3);
}

.form-icon i {
    font-size: 1.5rem;
    color: white;
}

.form-container-modern h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.form-container-modern .form-header > p {
    color: var(--gray);
    line-height: 1.5;
    font-size: 0.875rem;
    max-width: 400px;
    margin: 0 auto;
}

.form-modern {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 0;
}

.form-group {
    position: relative;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.form-field {
    position: relative;
}

/* Icono del campo */
.field-icon {
    position: absolute;
    left: 0.875rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    font-size: 1rem;
    z-index: 1;
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-field textarea ~ .field-icon {
    top: 1rem;
    transform: translateY(0);
}

.form-input {
    width: 100%;
    padding: 0.875rem 0.875rem 0.875rem 2.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.9375rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fafafa;
    color: var(--slate);
}

.form-input::placeholder {
    color: transparent;
}

.form-input:focus {
    outline: none;
    border-color: var(--cyan);
    background: white;
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.form-input:focus ~ .field-icon {
    color: var(--cyan);
}

/* Select personalizado */
.form-select {
    appearance: none;
    cursor: pointer;
    padding-right: 2.5rem;
}

.form-select-wrap {
    position: relative;
}

.select-arrow {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    pointer-events: none;
    transition: all 0.3s ease;
    font-size: 0.75rem;
}

.form-input:focus ~ .select-arrow {
    color: var(--cyan);
    transform: translateY(-50%) rotate(180deg);
}

/* Label flotante mejorado */
.form-label {
    position: absolute;
    left: 2.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    padding: 0;
    font-size: 0.9375rem;
    font-weight: 500;
}

.form-select-wrap .form-label {
    left: 2.5rem;
}

.form-label.selected,
.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label,
.form-select:valid + .form-label {
    top: -0.625rem;
    left: 2.25rem;
    font-size: 0.75rem;
    background: white;
    padding: 0 0.4rem;
    color: var(--cyan);
    font-weight: 600;
}

/* Estados de validación */
.form-field.error .form-input {
    border-color: #ef4444;
    background: #fef2f2;
}

.form-field.error .field-icon,
.form-field.error .form-label {
    color: #ef4444;
}

.form-field.success .form-input {
    border-color: #10b981;
}

.form-field.success .field-icon {
    color: #10b981;
}

/* Mensajes de error - más compactos */
.form-error {
    display: none;
    color: #ef4444;
    font-size: 0.75rem;
    margin-top: 0.375rem;
    font-weight: 500;
    padding-left: 2.5rem;
}

.form-field.error .form-error {
    display: block;
    animation: slideDown 0.3s ease;
}

/* Hint text - más compacto */
.form-hint {
    display: block;
    color: var(--gray);
    font-size: 0.7rem;
    margin-top: 0.375rem;
    padding-left: 2.5rem;
    font-style: italic;
}

/* Contador de caracteres - más compacto */
.char-counter {
    position: absolute;
    bottom: -1.125rem;
    right: 0;
    font-size: 0.7rem;
    color: var(--gray);
    font-weight: 500;
}

.char-counter #charCount {
    color: var(--cyan);
    font-weight: 700;
}

/* Campos de reserva - más compactos */
.reservation-fields {
    overflow: hidden;
    animation: slideDown 0.4s ease;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05), rgba(20, 184, 166, 0.05));
    border-radius: 12px;
    border: 2px dashed var(--cyan);
    margin-bottom: 0.5rem;
}

.reservation-fields::before {
    content: '📅 Datos para tu reserva';
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--cyan);
    margin-bottom: 0.75rem;
}

/* Botón de envío - más compacto */
.btn-submit {
    position: relative;
    overflow: hidden;
    margin-top: 0.5rem;
    padding: 0.875rem 1.5rem;
}

.btn-text,
.btn-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
}

.btn-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.btn-submit:hover::before {
    transform: translateX(100%);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* Disclaimer - más compacto */
.form-disclaimer {
    text-align: center;
    font-size: 0.75rem;
    color: var(--gray);
    margin-top: 0.75rem;
    font-style: italic;
}

/* Mensaje de éxito - más compacto */
.form-success {
    text-align: center;
    padding: 2rem 1.5rem;
    animation: fadeIn 0.5s ease;
}

.success-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.success-icon i {
    font-size: 2rem;
    color: white;
}

.form-success h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.form-success p {
    color: var(--gray);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
    right: 0;
    font-size: 0.75rem;
    color: var(--gray);
    font-weight: 500;
}

.char-counter #charCount {
    color: var(--cyan);
    font-weight: 700;
}

/* Campos de reserva */
.reservation-fields {
    overflow: hidden;
    animation: slideDown 0.4s ease;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05), rgba(20, 184, 166, 0.05));
    border-radius: 14px;
    border: 2px dashed var(--cyan);
}

.reservation-fields::before {
    content: '\u2139\ufe0f Datos para tu reserva';
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--cyan);
    margin-bottom: 1rem;
}

/* Botón de envío mejorado */
.btn-submit {
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
}

.btn-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.btn-submit:hover::before {
    transform: translateX(100%);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* Disclaimer */
.form-disclaimer {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--gray);
    margin-top: 1rem;
    font-style: italic;
}

/* Mensaje de éxito */
.form-success {
    text-align: center;
    padding: 3rem 2rem;
    animation: fadeIn 0.5s ease;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.success-icon i {
    font-size: 2rem;
    color: white;
}

.form-success h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.form-success p {
    color: var(--gray);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

/* Animaciones */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.social-modern {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid #f1f5f9;
}

.social-modern p {
    color: var(--gray);
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.social-links-modern {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-links-modern a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-ocean);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.social-links-modern a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(6, 182, 212, 0.4);
}

/* Footer Moderno */
.footer-modern {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 3.5rem 0 1.5rem;
    position: relative;
    overflow: hidden;
}

.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.5), transparent);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    max-width: 1350px;
    margin-left: auto;
    margin-right: auto;
}

.logo-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.logo-icon-big {
    font-size: 3.5rem;
    filter: drop-shadow(0 4px 12px rgba(6, 182, 212, 0.4));
    animation: float 3s ease-in-out infinite;
}

.logo-footer h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.75rem;
    letter-spacing: 2px;
    line-height: 1;
    background: linear-gradient(135deg, #ffffff, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-footer p {
    font-size: 0.875rem;
    opacity: 0.8;
    color: #94a3b8;
}

.footer-desc {
    opacity: 0.85;
    line-height: 1.6;
    margin-top: 0.75rem;
    color: #cbd5e1;
    font-size: 0.95rem;
}

.footer-col h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: #ffffff;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-ocean);
}

.footer-col a {
    display: block;
    opacity: 0.8;
    margin-bottom: 0.65rem;
    transition: all 0.3s ease;
    color: #cbd5e1;
    font-size: 0.9rem;
}

.footer-col a:hover {
    opacity: 1;
    color: var(--cyan);
    padding-left: 8px;
    transform: translateX(0);
}

.footer-col p {
    opacity: 0.75;
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
    color: #94a3b8;
}

.footer-bottom {
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.85rem;
    max-width: 1350px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom p {
    color: #94a3b8;
    line-height: 1.6;
}

.footer-bottom p:first-child {
    font-weight: 500;
    color: #cbd5e1;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .nav-side {
        position: fixed;
        top: 0;
        left: -100%; /* Oculto por defecto */
        width: clamp(260px, 75vw, 320px);
        height: auto;
        max-height: 100vh;
        background: white;
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
        padding: clamp(1.5rem, 4vw, 2rem) clamp(1.25rem, 4vw, 1.75rem) clamp(1.5rem, 4vw, 2rem);
        overflow-y: auto;
        z-index: 1000;
        transition: left 0.3s ease;
        display: flex;
        flex-direction: column;
        transform: none; /* Resetear transform del desktop */
        border-radius: 0 0 24px 0;
    }
    
    .nav-side.active {
        left: 0; /* Aparece deslizándose */
    }
    
    .nav-logo {
        margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
        margin-top: clamp(1rem, 3vw, 2rem);
    }
    
    .nav-links {
        width: 100%;
        gap: clamp(0.5rem, 1.5vw, 0.75rem);
        flex: 1;
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-dot {
        width: 100%;
        height: auto;
        padding: clamp(0.875rem, 2.5vw, 1.125rem) clamp(1rem, 3vw, 1.25rem);
        border-radius: 10px;
        background: transparent !important;
        text-align: left;
        display: flex !important;
        align-items: center;
        justify-content: flex-start;
        gap: clamp(0.75rem, 2vw, 1rem);
        color: var(--navy);
        font-weight: 500;
        position: relative;
        text-decoration: none;
        border: 2px solid transparent;
        transition: all 0.3s ease;
    }
    
    .nav-dot::before {
        content: none !important;
        display: none !important;
    }
    
    .nav-dot::after {
        content: attr(data-text) !important;
        opacity: 1 !important;
        visibility: visible !important;
        position: static;
        transform: none;
        flex: 1;
        color: var(--navy) !important;
        font-size: clamp(0.9375rem, 2.5vw, 1.0625rem) !important;
        font-weight: 500;
        display: block !important;
        text-align: left;
        border: none;
        border-bottom: none;
    }
    
    .nav-dot.active {
        background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(6, 182, 212, 0.1)) !important;
        border-color: var(--cyan);
        border-left: 4px solid var(--cyan);
    }
    
    .nav-dot.active::after {
        color: var(--cyan) !important;
        font-weight: 700;
    }
    
    .nav-dot:hover {
        background: rgba(6, 182, 212, 0.08) !important;
        transform: none;
        border-color: rgba(6, 182, 212, 0.3);
    }
    
    /* Submenú Móvil - MEJORADO */
    .has-submenu {
        position: relative;
        width: 100%;
    }
    
    .has-submenu > .nav-dot {
        cursor: pointer;
        background: transparent !important;
        padding: clamp(0.875rem, 2.5vw, 1.125rem) clamp(1rem, 3vw, 1.25rem) 0.15rem !important;
        border-radius: 0;
        overflow: visible;
        border: none;
        transition: all 0.3s ease;
        display: flex !important;
        justify-content: flex-start;
        align-items: center;
        box-shadow: none;
    }
    
    .has-submenu > .nav-dot::after {
        color: var(--navy) !important;
        font-weight: 600;
        padding: 0;
        background: transparent;
        border: none;
        font-size: clamp(0.9375rem, 2.5vw, 1.0625rem) !important;
    }

    .has-submenu > .nav-dot.active {
        background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(6, 182, 212, 0.1)) !important;
        border-top: 2px solid var(--cyan);
        border-right: 2px solid var(--cyan);
        border-bottom: 2px solid var(--cyan);
        border-left: 4px solid var(--cyan);
        border-radius: 10px;
        padding: clamp(0.875rem, 2.5vw, 1.125rem) clamp(1rem, 3vw, 1.25rem) 0.15rem calc(clamp(1rem, 3vw, 1.25rem) - 4px) !important;
    }

    .has-submenu > .nav-dot.active::after {
        color: var(--cyan) !important;
        font-weight: 700;
    }

    .submenu-trigger {
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: flex-start;
        padding: 1rem 1rem 0.95rem;
        border: none;
        border-radius: 0;
        background: transparent;
        color: var(--cyan);
        font: inherit;
        font-size: 0.9rem;
        font-weight: 600;
        text-align: left;
        cursor: pointer;
        transition: all 0.3s ease;
        appearance: none;
        box-shadow: none;
        outline: none;
    }

    .submenu-trigger:hover {
        background: transparent;
    }

    .submenu-trigger::before {
        content: 'Nuestra Carta';
    }

    .has-submenu.open .submenu-trigger {
        color: var(--cyan-dark);
        background: transparent;
    }
    
    .has-submenu.open > .nav-dot {
        border-color: transparent;
        box-shadow: none;
    }

    .has-submenu.open > .nav-dot.active {
        border-top: 2px solid var(--cyan);
        border-right: 2px solid var(--cyan);
        border-bottom: 2px solid var(--cyan);
        border-left: 4px solid var(--cyan);
    }
    
    .has-submenu.open > .nav-dot::after {
        background: transparent;
        color: var(--navy) !important;
    }
    
    .submenu-carta {
        position: static;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0;
        margin-top: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
        background: transparent;
        min-width: auto;
    }
    
    .has-submenu.open .submenu-carta {
        max-height: 600px;
        padding: 0.6rem 0 0;
    }
    
    .submenu-header {
        display: none;
    }
    
    .submenu-items {
        gap: 0.5rem;
        display: flex;
        flex-direction: column;
    }
    
    .submenu-item {
        padding: clamp(0.75rem, 2vw, 0.875rem) clamp(0.875rem, 2.5vw, 1rem);
        border-radius: 8px;
        margin-bottom: 0;
        background: white;
        border: 1px solid #e2e8f0;
        transition: all 0.3s ease;
    }
    
    .submenu-item:hover {
        background: white;
        border-color: var(--cyan);
        transform: translateX(4px);
        box-shadow: 0 2px 8px rgba(6, 182, 212, 0.1);
    }
    
    .submenu-item i {
        font-size: 1.125rem;
        width: 30px;
        height: 30px;
        background: rgba(6, 182, 212, 0.1);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--cyan);
    }
    
    .submenu-item:hover i {
        background: var(--cyan);
        color: white;
    }
    
    .submenu-title {
        font-size: clamp(0.875rem, 2vw, 0.9375rem);
        font-weight: 600;
        color: var(--navy);
    }
    
    .submenu-desc {
        font-size: clamp(0.75rem, 1.8vw, 0.8125rem);
        color: var(--gray);
    }
    
    /* Redes sociales en menú móvil */
    .nav-social {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        padding: clamp(1rem, 3vw, 1.5rem) 0 0;
        margin-top: clamp(1rem, 3vw, 1.5rem);
        flex-direction: row;
        justify-content: center;
        gap: clamp(1.25rem, 4vw, 2rem);
        border-top: 2px solid #f1f5f9;
    }
    
    .nav-social a {
        font-size: 1.5rem;
        color: var(--gray);
    }
    
    .nav-social a:hover {
        color: var(--cyan);
        transform: translateY(-2px);
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-split {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1.5rem;
    }
    
    .hero-right {
        order: -1;
    }
    
    .title-line.big {
        font-size: 4rem;
    }
    
    .about-layout,
    .contacto-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1.5rem;
    }
    
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bento-item.large {
        grid-column: span 2;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================================
   📱 BREAKPOINT: 1024px (Tablets / Laptops)
   ============================================ */
@media (max-width: 1024px) {
    .title-line.big {
        font-size: clamp(2.5rem, 6vw, 3.5rem);
    }
    
    .hero-desc {
        font-size: clamp(1rem, 2.5vw, 1.05rem);
    }
    
    .bento-grid {
        grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
        gap: clamp(0.5rem, 1.5vw, 1rem);
    }
    
    .bento-item.large {
        grid-column: span 2;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .reviews-carousel-3d {
        padding: 0 clamp(48px, 10vw, 70px);
    }
    
    .carousel-track {
        padding: 0 calc(50% - min(280px, 42vw));
        gap: 1.5rem;
    }
    
    .review-card-modern {
        flex: 0 0 min(560px, 88vw);
    }
    
    .form-container-modern {
        padding: 2.25rem 2rem;
    }
    
    .scroll-hint {
        display: none;
    }
    
    .whatsapp-btn:hover {
        transform: translateY(-4px) scale(1.1);
    }
}

/* ============================================
   📱 BREAKPOINT: 768px (Tablets Portrait)
   ============================================ */
@media (max-width: 768px) {
    .container-wide {
        padding: 0 1.25rem;
    }
    
    .hero-split {
        padding: 0 1.25rem;
        gap: 2rem;
    }
    
    .hero-content {
        padding-top: 2rem;
    }
    
    .title-line.big {
        font-size: 2.75rem;
        line-height: 1.1;
    }
    
    .title-line.small {
        font-size: 1.75rem;
    }
    
    .hero-desc {
        font-size: 1rem;
        margin: 1.5rem 0;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-modern {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .hero-float-card {
        display: none;
    }
    
    .scroll-hint {
        display: none;
    }
    
    .mobile-menu-toggle {
        z-index: 1001;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
    }
    
    .stat {
        padding: 1.5rem;
    }
    
    .stat h3 {
        font-size: 2.5rem;
    }
    
    .about-layout {
        padding: 0 1.25rem;
        gap: 2.5rem;
    }
    
    .about-modern {
        padding: 4rem 0;
    }
    
    .contacto-grid {
        padding: 0 1.25rem;
    }
    
    .contacto-modern {
        padding: 4rem 0;
    }
    
    .info-card-modern {
        padding: 1.5rem;
    }
    
    .info-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .info-card-modern h4 {
        font-size: 1.1rem;
    }
    
    .section-head-center {
        padding: 0 1.25rem;
    }
    
    .reviews-modern {
        padding: 4rem 0;
    }
    
    .rating-hero {
        padding: 0 1.25rem;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }
    
    .bento-item.large,
    .bento-item.medium,
    .bento-item.small {
        grid-column: span 1;
    }
    
    .reviews-carousel-3d {
        padding: 0 clamp(30px, 6vw, 55px);
    }
    
    .carousel-track-container {
        padding: 2.5rem 0;
    }
    
    .carousel-track {
        padding: 0 calc(50% - min(240px, 40vw));
        gap: clamp(1rem, 2vw, 1.5rem);
    }
    
    .review-card-modern {
        flex: 0 0 min(480px, 85vw);
        max-width: 480px;
        padding: clamp(1.75rem, 4vw, 2.25rem);
    }
    
    .review-text-modern {
        font-size: clamp(0.9rem, 2vw, 1rem);
        min-height: auto;
        line-height: 1.65;
    }
    
    .reviewer-name {
        font-size: 1rem;
    }
    
    .reviewer-location {
        font-size: 0.85rem;
    }
    
    .carousel-nav {
        width: clamp(40px, 8vw, 48px);
        height: clamp(40px, 8vw, 48px);
        font-size: clamp(0.9rem, 2vw, 1.2rem);
    }
    
    .carousel-nav.prev {
        left: clamp(4px, 1.5vw, 8px);
    }
    
    .carousel-nav.next {
        right: clamp(4px, 1.5vw, 8px);
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 0 1.25rem;
    }
    
    .footer-col h4 {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .footer-links li {
        margin-bottom: 0.75rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .social-links {
        gap: 1rem;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .footer-bottom {
        padding: 1.5rem 1.25rem;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .section-title-modern {
        font-size: 2.25rem;
        line-height: 1.2;
    }
    
    .section-label {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
    
    .whatsapp-btn {
        width: 60px;
        height: 60px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-btn::before {
        inset: -4px;
    }
    
    .nav-side {
        width: 280px;
    }
    
    /* Asegurar que los enlaces sean fáciles de tocar en móvil */
    a, button {
        -webkit-tap-highlight-color: rgba(6, 182, 212, 0.2);
    }

    
    /* Formulario responsive */
    .form-container-modern {
        padding: 1.75rem 1.25rem;
        max-height: 80vh;
    }
    
    .form-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.875rem;
    }
    
    .form-icon i {
        font-size: 1.375rem;
    }
    
    .form-container-modern h3 {
        font-size: 1.375rem;
    }
    
    .form-container-modern .form-header > p {
        font-size: 0.8125rem;
    }
    
    .form-modern {
        gap: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-input {
        padding: 0.8125rem 0.8125rem 0.8125rem 2.375rem;
        font-size: 0.875rem;
    }
    
    .field-icon {
        font-size: 0.9375rem;
        left: 0.75rem;
    }
    
    .form-label {
        left: 2.375rem;
        font-size: 0.875rem;
    }
    
    .form-label.selected,
    .form-input:focus + .form-label,
    .form-input:not(:placeholder-shown) + .form-label,
    .form-select:valid + .form-label {
        left: 2.125rem;
        font-size: 0.7rem;
    }
    
    .reservation-fields {
        padding: 0.875rem;
    }
    
    .btn-submit {
        padding: 0.8125rem 1.25rem;
        font-size: 0.9375rem;
    }
    
    .social-modern {
        padding-top: 1.5rem;
    }
}

/* ============================================
   📱 BREAKPOINT: 480px (Móviles Medianos)
   ============================================ */
@media (max-width: 480px) {
    .title-line.big {
        font-size: 2.25rem;
        letter-spacing: -0.02em;
    }
    
    .title-line.small {
        font-size: 1.5rem;
    }
    
    .hero-desc {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .section-title-modern {
        font-size: 1.85rem;
        line-height: 1.2;
    }
    
    .form-container-modern {
        padding: 1.75rem 1.25rem;
        border-radius: 20px;
    }
    
    .form-header h3 {
        font-size: 1.5rem;
    }
    
    .form-header p {
        font-size: 0.875rem;
    }
    
    .form-field label {
        font-size: 0.875rem;
    }
    
    .form-field input,
    .form-field select,
    .form-field textarea {
        font-size: 0.95rem;
        padding: 0.875rem 1rem;
    }
    
    .reviews-carousel-3d {
        padding: 0 clamp(12px, 3vw, 30px);
        margin: 2rem auto 0;
    }
    
    .carousel-track-container {
        overflow: hidden;
        padding: 2rem 0;
    }
    
    .carousel-track {
        padding: 0 5vw; /* Pequeño padding para visualizar edges */
        gap: clamp(1.5rem, 5vw, 2rem);
        justify-content: flex-start; /* Permite scroll correcto */
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
    }
    
    .review-card-modern {
        flex: 0 0 75vw; /* Solo 75% del viewport - UNA tarjeta a la vez */
        max-width: 320px; /* Ancho máximo más pequeño */
        padding: clamp(1.5rem, 5vw, 1.75rem) clamp(1.25rem, 4vw, 1.5rem);
        border-radius: 18px;
        scroll-snap-align: center;
        min-height: 200px; /* Altura mínima para evitar que se vea muy alargada */
    }
    
    .review-text-modern {
        font-size: clamp(0.875rem, 2.5vw, 0.95rem);
        min-height: auto;
        line-height: 1.6;
        margin-bottom: 1.25rem;
    }
    
    .reviewer-name {
        font-size: 0.95rem;
    }
    
    .reviewer-location {
        font-size: 0.8rem;
    }
    
    .carousel-nav {
        width: clamp(40px, 10vw, 46px);
        height: clamp(40px, 10vw, 46px);
        font-size: clamp(0.95rem, 2.5vw, 1.15rem);
        box-shadow: 0 4px 16px rgba(15, 23, 42, 0.25);
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
    }
    
    .carousel-nav.prev {
        left: 6px;
    }
    
    .carousel-nav.next {
        right: 6px;
    }
    
    .rating-num {
        font-size: 3rem;
    }
    
    .stars-big {
        font-size: 2rem;
    }
    
    .quote-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
    
    .indicator.active {
        width: 24px;
    }
    
    .carousel-indicators {
        gap: 0.5rem;
        margin-top: 2rem;
    }
    
    /* Bento Grid responsive */
    .bento-grid {
        gap: 1rem;
        grid-auto-rows: 200px;
    }
    
    .bento-overlay h3 {
        font-size: 1.25rem;
    }
    
    .bento-overlay p {
        font-size: 0.85rem;
    }
    
    /* Stats ajustados */
    .stat h3 {
        font-size: 2rem;
    }
    
    .stat p {
        font-size: 0.85rem;
    }
    
    /* Formulario en móviles pequeños */
    .form-header {
        margin-bottom: 1.5rem;
    }
    
    .form-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 0.75rem;
    }
    
    .form-icon i {
        font-size: 1.25rem;
    }
    
    .form-container-modern {
        padding: 1.5rem 1rem;
        max-height: 75vh;
    }
    
    .btn-submit {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .footer-modern {
        padding: 3rem 0 1.25rem;
    }
    
    .logo-footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.75rem;
    }
    
    .logo-icon-big {
        font-size: 2.75rem;
    }
    
    .logo-text-footer {
        font-size: 1.25rem;
    }
    
    .whatsapp-btn {
        width: 56px;
        height: 56px;
        font-size: 26px;
        bottom: 16px;
        right: 16px;
    }
    
    /* Optimizar tamaños táctiles */
    .btn-modern,
    .btn-submit {
        min-height: 48px;
    }
    
    /* Espaciado optimizado para móviles pequeños */
    .hero-modern,
    .about-modern,
    .menu-preview,
    .reviews-modern,
    .contacto-modern {
        padding: 3rem 0;
    }
    
    .section-head-center {
        margin-bottom: 2.5rem;
    }

    
    
    .form-container-modern h3 {
        font-size: 1.25rem;
    }
    
    .form-container-modern .form-header > p {
        font-size: 0.8125rem;
    }
    
    .form-modern {
        gap: 0.875rem;
    }
    
    .form-input {
        padding: 0.75rem 0.75rem 0.75rem 2.25rem;
        font-size: 0.875rem;
        border-radius: 10px;
    }
    
    .field-icon {
        font-size: 0.875rem;
        left: 0.625rem;
    }
    
    .form-label {
        left: 2.25rem;
        font-size: 0.875rem;
    }
    
    .form-label.selected,
    .form-input:focus + .form-label,
    .form-input:not(:placeholder-shown) + .form-label,
    .form-select:valid + .form-label {
        left: 2rem;
        font-size: 0.6875rem;
    }
    
    .form-error {
        font-size: 0.7rem;
        padding-left: 2.25rem;
        margin-top: 0.25rem;
    }
    
    .form-hint {
        font-size: 0.6875rem;
        padding-left: 2.25rem;
    }
    
    .char-counter {
        bottom: -1rem;
        font-size: 0.6875rem;
    }
    
    .reservation-fields {
        padding: 0.75rem;
    }
    
    .reservation-fields::before {
        font-size: 0.75rem;
        margin-bottom: 0.625rem;
    }
    
    .btn-submit {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    .form-disclaimer {
        font-size: 0.7rem;
        margin-top: 0.625rem;
    }
    
    .form-success {
        padding: 1.5rem 1rem;
    }
    
    .success-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 0.875rem;
    }
    
    .success-icon i {
        font-size: 1.625rem;
    }
    
    .form-success h4 {
        font-size: 1.25rem;
        margin-bottom: 0.375rem;
    }
    
    .form-success p {
        font-size: 0.875rem;
        margin-bottom: 1.25rem;
    }
    
    .social-modern {
        padding-top: 1.25rem;
    }
    
    .social-links-modern a {
        width: 40px;
        height: 40px;
        font-size: 1.125rem;
    }
}

/* ============================================
   📱 BREAKPOINT: 320px (Móviles Pequeños)
   ============================================
   Optimizado para dispositivos móviles mínimos
   ============================================ */
@media (max-width: 320px) {
    html {
        font-size: 13px; /* Escala todo proporcionalmente */
    }
    
    .title-line.big {
        font-size: 1.8rem;
        letter-spacing: -0.03em;
    }
    
    .hero-split {
        padding: 0 0.75rem;
        gap: 1rem;
    }
    
    .btn-modern {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .about-stats {
        gap: 1rem;
    }
    
    .stat {
        padding: 1rem;
    }
    
    .stat h3 {
        font-size: 1.75rem;
    }
    
    .form-container-modern {
        padding: 1.25rem;
    }
    
    .whatsapp-btn {
        width: 45px !important;
        height: 45px !important;
        font-size: 24px !important;
    }
    
    /* Carrusel ultra compacto para móviles pequeños */
    .reviews-carousel-3d {
        padding: 0 clamp(6px, 2vw, 12px);
    }
    
    .carousel-track-container {
        padding: 1.5rem 0;
    }
    
    .carousel-track {
        padding: 0;
        gap: 1rem;
        justify-content: center;
    }
    
    .review-card-modern {
        flex: 0 0 86vw; /* Más ancho en pantallas pequeñas */
        max-width: 280px; /* Max-width más pequeño */
        padding: 1.25rem 1rem;
        min-height: 180px;
    }
    
    .quote-icon {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }
    
    .review-text-modern {
        font-size: 0.8rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    
    .carousel-nav {
        width: 32px !important;
        height: 32px !important;
        font-size: 0.75rem !important;
    }
    
    .carousel-indicators {
        gap: 6px;
        margin-top: 1.5rem;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
}

/* ============================================
   🖥️ BREAKPOINT: 1440px+ (Pantallas Grandes)
   ============================================
   Optimizado para monitores desktop grandes
   ============================================ */
@media (min-width: 1440px) {
    html {
        font-size: 18px; /* Tipografía más grande en pantallas grandes */
    }
    
    .hero-split,
    .about-layout,
    .bento-grid,
    .contacto-grid {
        max-width: 1400px;
    }
    
    .title-line.big {
        font-size: 5rem;
    }
    
    .bento-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
    
    .hero-main-img {
        aspect-ratio: 16 / 9;
    }
}
