/* ============================================
   RESET CSS
   ============================================ */

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

/* ============================================
   HTML Y BODY
   ============================================ */

html {
    width: 100%;
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-white);
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

/* ============================================
   VARIABLES CSS
   ============================================ */

:root {
    /* Colors */
    --color-primary: #4A90A4;
    --color-primary-dark: #357A8F;
    --color-secondary: #D4AF37;
    --color-celeste: #A8D5E2;
    --color-arena: #D4C5A9;
    --color-madera: #6B4E3D;
    --color-white: #FFFFFF;
    --color-black: #1F2937;
    --color-gray-light: #F9FAFB;
    --color-gray-medium: #9CA3AF;
    --color-gray-dark: #4B5563;
    --color-text: #2C2C2C;
    --color-text-light: #666666;

    /* Gradients */
    --gradient-ocean: linear-gradient(135deg, #4A90A4 0%, #357A8F 100%);
    --gradient-sky: linear-gradient(180deg, #A8D5E2 0%, #E8F4F8 100%);

    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --font-size-small: 0.875rem;
    --font-size-base: 1rem;
    --font-size-medium: 1.125rem;
    --font-size-large: 1.5rem;
    --font-size-xlarge: 2rem;
    --font-size-xxlarge: 3rem;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Shadows */
    --shadow-small: 0 2px 4px rgba(74, 144, 164, 0.08);
    --shadow-medium: 0 4px 12px rgba(74, 144, 164, 0.12);
    --shadow-large: 0 8px 24px rgba(74, 144, 164, 0.16);

    /* Borders */
    --border-radius-small: 4px;
    --border-radius-medium: 8px;
    --border-radius-large: 16px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Z-index */
    --z-index-dropdown: 100;
    --z-index-navbar: 1000;
    --z-index-modal: 2000;
    --z-index-whatsapp: 999;
}

/* ============================================
   UTILIDADES
   ============================================ */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.section-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-xlarge);
    color: var(--color-black);
    text-align: center;
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    margin: 0 auto var(--spacing-md);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-lg);
    font-size: var(--font-size-medium);
}

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-weight: 500;
    border-radius: var(--border-radius-small);
    transition: all var(--transition-base);
    cursor: pointer;
    text-align: center;
    font-size: var(--font-size-base);
}

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

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

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

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

/* ============================================
   NAVBAR
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    z-index: var(--z-index-navbar);
    padding: 1.25rem 0;
    transition: all var(--transition-base);
    background-color: transparent;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-small);
    padding: 0.875rem 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 2rem;
    min-height: 70px;
}

.logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
    display: block;
}

.logo a:hover .logo-img {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.25));
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-white);
    transition: color var(--transition-base);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    line-height: 1;
    display: flex;
    align-items: center;
}

.navbar.scrolled .logo-text {
    color: var(--color-madera);
    text-shadow: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-link {
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: color var(--transition-base);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width var(--transition-base);
}

.nav-link:hover::after {
    width: 100%;
}

.navbar.scrolled .nav-link {
    color: var(--color-madera);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background-color: var(--color-white);
    border-radius: 3px;
    transition: all var(--transition-base);
}

.navbar.scrolled .hamburger span {
    background-color: var(--color-primary);
}

/* ============================================
   MENÚ MÓVIL
   ============================================ */

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background-color: #1F2937;
    z-index: 9999;
    transition: right 0.4s ease-in-out;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
}

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

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-header .logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: white;
    font-weight: 700;
}

.close-menu {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.close-menu:hover {
    transform: rotate(90deg);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 2rem 0;
}

.mobile-nav-link {
    color: white;
    padding: 1.25rem 1.5rem;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    opacity: 0;
    transform: translateX(20px);
}

.mobile-menu.active .mobile-nav-link {
    animation: slideInRight 0.4s forwards;
}

.mobile-menu.active .mobile-nav-link:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu.active .mobile-nav-link:nth-child(2) { animation-delay: 0.15s; }
.mobile-menu.active .mobile-nav-link:nth-child(3) { animation-delay: 0.2s; }
.mobile-menu.active .mobile-nav-link:nth-child(4) { animation-delay: 0.25s; }
.mobile-menu.active .mobile-nav-link:nth-child(5) { animation-delay: 0.3s; }

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
    background-color: rgba(74, 144, 164, 0.15);
    border-left-color: var(--color-primary);
    padding-left: 2rem;
}

.mobile-lang {
    padding: 1.5rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-lang .lang-option-mobile {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    cursor: pointer;
}

.mobile-lang .lang-option-mobile.active {
    color: var(--color-primary);
    font-weight: 600;
}

.mobile-lang .separator {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 0.5rem;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    overflow: hidden;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    will-change: opacity;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-ocean);
    opacity: 0.4;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 var(--spacing-sm);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    margin-bottom: var(--spacing-md);
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.hero-buttons .btn {
    min-width: 180px;
}

.hero-buttons .btn-primary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hero-buttons .btn-primary:hover {
    background-color: white;
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.hero-buttons .btn-secondary {
    background-color: var(--color-primary);
    color: white;
    border: 2px solid var(--color-primary);
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.carousel-dots {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 1rem;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 4px;
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.dot.active {
    background-color: var(--color-white);
    border-color: var(--color-white);
    transform: scale(1.3);
}

/* ============================================
   OPTIMIZACIÓN DE IMÁGENES
   ============================================ */

img {
    max-width: 100%;
    height: auto;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

[style*="background-image"] {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* ============================================
   HISTORIA
   ============================================ */

.historia {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-white);
    width: 100%;
    overflow-x: hidden;
}

.historia-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.historia-text h2 {
    text-align: left;
    margin-bottom: var(--spacing-sm);
}

.historia-text .title-underline {
    margin: 0 0 var(--spacing-md) 0;
}

.historia-text p {
    color: var(--color-text-light);
    margin-bottom: var(--spacing-sm);
    line-height: 1.8;
    font-size: var(--font-size-base);
}

.historia-carousel {
    position: relative;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-large);
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 500px;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    pointer-events: none;
}

.carousel-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(74, 144, 164, 0.2)
    );
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid white;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.indicator.active {
    background-color: white;
    width: 14px;
    height: 14px;
}

/* ============================================
   LA CARTA
   ============================================ */

.galeria {
    padding: var(--spacing-xl) 0;
    background: var(--gradient-sky);
    width: 100%;
    overflow-x: hidden;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.plato-card {
    background-color: white;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
}

.plato-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
}

.plato-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: var(--color-gray-light);
}

.plato-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.plato-card:hover .plato-image img {
    transform: scale(1.1);
}

.plato-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(31, 41, 55, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.plato-card:hover .plato-hover-overlay {
    opacity: 1;
}

.ver-carta-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.ver-carta-btn:hover {
    transform: scale(1.1);
}

.ver-carta-btn i {
    font-size: 3rem;
    color: var(--color-primary);
}

.ver-carta-btn span {
    font-size: 1.125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plato-content {
    padding: var(--spacing-md);
    text-align: center;
}

.plato-content h3 {
    font-family: var(--font-heading);
    font-size: var(--font-size-large);
    color: var(--color-madera);
    margin-bottom: 0.5rem;
}

.plato-content p {
    font-size: var(--font-size-base);
    color: var(--color-gray-dark);
    line-height: 1.6;
}

/* ============================================
   UBICACIÓN
   ============================================ */

.ubicacion {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-white);
    width: 100%;
    overflow-x: hidden;
}

.ubicacion-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-md);
}

.ubicacion-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.info-item {
    display: flex;
    gap: var(--spacing-sm);
    align-items: flex-start;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-top: 0.25rem;
    min-width: 30px;
}

.info-item h3 {
    font-size: var(--font-size-medium);
    margin-bottom: 0.25rem;
    color: var(--color-black);
}

.info-item p {
    color: var(--color-text-light);
    font-size: var(--font-size-base);
}

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

.info-item a:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

.ubicacion-mapa {
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.ubicacion-mapa iframe {
    width: 100%;
    height: 400px;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    width: 100%;
    overflow-x: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.footer-section h3 {
    font-family: var(--font-heading);
    font-size: var(--font-size-large);
    margin-bottom: var(--spacing-sm);
    color: var(--color-secondary);
}

.footer-section h4 {
    font-size: var(--font-size-medium);
    margin-bottom: var(--spacing-sm);
    color: var(--color-white);
}

.footer-section p {
    color: var(--color-gray-medium);
    line-height: 1.8;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--color-gray-medium);
    transition: color var(--transition-base);
}

.footer-section ul li a:hover {
    color: var(--color-secondary);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: var(--color-gray-dark);
    border-radius: 50%;
    color: var(--color-white);
    font-size: 1.25rem;
    transition: all var(--transition-base);
}

.social-links a:hover {
    background-color: var(--color-primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--color-gray-dark);
    color: var(--color-gray-medium);
    font-size: var(--font-size-small);
}

/* ============================================
   BOTÓN WHATSAPP FLOTANTE
   ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-large);
    z-index: var(--z-index-whatsapp);
    transition: all var(--transition-base);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ============================================
   SELECTOR DE IDIOMA SIMPLE
   ============================================ */

.language-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.lang-simple {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
}

.lang-simple .lang-option {
    color: var(--color-white);
    text-decoration: none;
    transition: color var(--transition-base);
    cursor: pointer;
}

.navbar.scrolled .lang-simple .lang-option {
    color: var(--color-madera);
}

.lang-simple .lang-option.active {
    color: var(--color-primary);
}

.lang-simple .lang-option:hover {
    color: var(--color-primary);
}

.lang-simple .separator {
    color: rgba(255, 255, 255, 0.5);
}

.navbar.scrolled .lang-simple .separator {
    color: rgba(107, 78, 61, 0.5);
}

/* ============================================
   CHEF
   ============================================ */

.chef {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-white);
    width: 100%;
    overflow-x: hidden;
}

.chef-carousel {
    position: relative;
    margin-top: var(--spacing-lg);
}

.chef-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.chef-slide.active {
    display: block;
    opacity: 1;
}

.chef-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.chef-image {
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-large);
    aspect-ratio: 3/4;
    background-color: var(--color-gray-light);
}

.chef-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chef-info h3 {
    font-family: var(--font-heading);
    font-size: var(--font-size-xlarge);
    color: var(--color-madera);
    margin-bottom: 0.5rem;
}

.chef-title {
    font-size: var(--font-size-medium);
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.chef-description {
    font-size: var(--font-size-base);
    line-height: 1.8;
    color: var(--color-gray-dark);
}

.chef-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: var(--spacing-md);
}

.chef-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    background-color: transparent;
    color: var(--color-primary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chef-btn:hover {
    background-color: var(--color-primary);
    color: white;
    transform: scale(1.1);
}

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

/* ============================================
   HORARIOS
   ============================================ */

.horarios {
    padding: var(--spacing-xl) 0;
    background: var(--gradient-sky);
    width: 100%;
    overflow-x: hidden;
}

.horarios-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.horarios-image {
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-large);
    background-color: var(--color-gray-light);
    aspect-ratio: 1;
}

.horarios-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.horarios-info .section-title {
    text-align: left;
}

.horarios-info .title-underline {
    margin: 0 0 var(--spacing-md) 0;
}

.horario-item {
    background-color: white;
    padding: var(--spacing-md);
    border-radius: var(--border-radius-medium);
    margin-bottom: var(--spacing-sm);
    box-shadow: var(--shadow-small);
}

.horario-dias,
.horario-horas {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.horario-dias i,
.horario-horas i {
    color: var(--color-primary);
    font-size: 1.25rem;
    width: 30px;
}

.horario-dias span,
.horario-horas span {
    font-size: var(--font-size-medium);
    font-weight: 600;
    color: var(--color-madera);
}

.horarios-nota {
    margin-top: var(--spacing-md);
    font-size: var(--font-size-small);
    color: var(--color-gray-dark);
    font-style: italic;
}

/* ============================================
   AMBIENTES
   ============================================ */

.ambientes {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-white);
    width: 100%;
    overflow-x: hidden;
}

.ambientes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.ambiente-card {
    background-color: white;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
}

.ambiente-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
}

.ambiente-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: var(--color-gray-light);
}

.ambiente-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ambiente-card:hover .ambiente-image img {
    transform: scale(1.1);
}

.ambiente-card h3 {
    font-family: var(--font-heading);
    font-size: var(--font-size-large);
    color: var(--color-madera);
    padding: var(--spacing-sm) var(--spacing-md) 0;
    text-align: center;
}

.ambiente-card p {
    padding: 0.5rem var(--spacing-md) var(--spacing-md);
    color: var(--color-gray-dark);
    text-align: center;
    line-height: 1.6;
}

/* ============================================
   UBICACIÓN
   ============================================ */

.ubicacion-intro {
    text-align: center;
    font-size: var(--font-size-medium);
    color: var(--color-gray-dark);
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
    line-height: 1.8;
}

.map-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: var(--spacing-md);
}

.map-icon-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background-color: var(--color-celeste);
    border-radius: var(--border-radius-medium);
    transition: all 0.3s ease;
    text-align: center;
}

.map-icon-btn:hover {
    background-color: var(--color-primary);
    color: white;
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.map-icon-btn i {
    font-size: 2rem;
}

.map-icon-btn span {
    font-weight: 600;
    font-size: 0.9rem;
}

.ubicacion-left {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.ubicacion-image {
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-large);
    background-color: var(--color-gray-light);
    aspect-ratio: 4/3;
}

.ubicacion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   CONTACTO
   ============================================ */

.contactanos {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbfc 100%);
    position: relative;
    width: 100%;
    overflow-x: hidden;
}

.contactanos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(180deg, var(--color-celeste) 0%, transparent 100%);
    opacity: 0.3;
    pointer-events: none;
}

.contactanos .container {
    position: relative;
    z-index: 1;
}

.contactanos .section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--color-gray-dark);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-quick-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.quick-info-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-large);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(74, 144, 164, 0.1);
}

.quick-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.location-icon {
    background: linear-gradient(135deg, #4A90A4, #357A8F);
}

.contact-icon {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.hours-icon {
    background: linear-gradient(135deg, #D4AF37, #B8941F);
}

.quick-info-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-madera);
    margin-bottom: 1rem;
}

.quick-info-card p {
    color: var(--color-gray-dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-map {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--color-primary);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-map:hover {
    background-color: var(--color-primary-dark);
    transform: scale(1.05);
    color: white;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    background-color: var(--color-gray-light);
    border-radius: var(--border-radius-medium);
    color: var(--color-madera);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background-color: var(--color-primary);
    color: white;
    transform: translateX(5px);
}

.contact-method.whatsapp:hover {
    background-color: #25D366;
    color: white;
}

.contact-method i {
    font-size: 1.25rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background-color: var(--color-gray-light);
    border-radius: var(--border-radius-medium);
}

.hour-item .day {
    font-weight: 600;
    color: var(--color-madera);
}

.hour-item .time {
    color: var(--color-primary);
    font-weight: 500;
}

.contact-gallery-section {
    margin-bottom: 4rem;
    text-align: center;
}

.contact-gallery-section h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-madera);
    margin-bottom: 2rem;
}

.gallery-carousel {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.carousel-container-gallery {
    position: relative;
    width: 100%;
    height: 500px;
    background-color: var(--color-gray-light);
}

.carousel-slide-gallery {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.carousel-slide-gallery.active {
    opacity: 1;
}

.carousel-slide-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-indicators-gallery {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.indicator-gallery {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.indicator-gallery:hover {
    background-color: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.indicator-gallery.active {
    background-color: white;
    transform: scale(1.4);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--color-primary);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.carousel-arrow:hover {
    background-color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.carousel-prev {
    left: 1.5rem;
}

.carousel-next {
    right: 1.5rem;
}

.carousel-arrow i {
    font-size: 1.25rem;
}

.social-section {
    text-align: center;
}

.social-section h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-madera);
    margin-bottom: 0.5rem;
}

.social-section p {
    color: var(--color-gray-dark);
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
}

.social-buttons-modern {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-btn-modern {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2.5rem;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-width: 300px;
}

.social-btn-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.instagram-btn {
    background: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7);
    color: white;
}

.facebook-btn {
    background-color: #1877F2;
    color: white;
}

.facebook-btn:hover {
    background-color: #0d65d9;
    color: white;
}

.social-btn-modern .btn-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
}

.social-btn-modern .btn-content {
    flex: 1;
    text-align: left;
}

.btn-label {
    display: block;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    color: white;
}

.btn-handle {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    color: white;
}

.btn-arrow {
    font-size: 1.25rem;
    opacity: 0.7;
    transition: all 0.3s ease;
    color: white;
}

.social-btn-modern:hover .btn-arrow {
    opacity: 1;
    transform: translateX(5px);
}

.footer-simple {
    background-color: #1F2937;
    padding: var(--spacing-md) 0;
    text-align: center;
    width: 100%;
    overflow-x: hidden;
}

.footer-simple p {
    color: white;
    font-size: var(--font-size-small);
}

/* ============================================
   RESPONSIVE - TABLET GRANDE (max-width: 1024px)
   ============================================ */

@media (max-width: 1024px) {
    .logo-img {
        width: 52px;
        height: 52px;
    }

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

/* ============================================
   RESPONSIVE - MÓVILES (max-width: 767px)
   ============================================ */

@media (max-width: 767px) {
    html {
        font-size: 16px;
    }

    .nav-wrapper {
        justify-content: space-between;
        padding: 0 1rem;
    }

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

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

    .nav-wrapper {
        min-height: 60px;
    }

    .nav-menu {
        display: none;
    }

    .lang-simple {
        display: none;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 10000;
    }

    .hamburger span {
        width: 25px;
        height: 3px;
        background-color: var(--color-white);
        transition: all 0.3s ease;
        border-radius: 2px;
    }

    .navbar.scrolled .hamburger span {
        background-color: var(--color-madera);
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero {
        min-height: 100vh;
        height: 100vh;
    }

    .hero-slide {
        background-attachment: scroll !important;
    }

    .hero-overlay {
        opacity: 0.55;
    }

    .hero-content {
        padding: 0 1.5rem;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    }

    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.25rem);
        text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.7);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .mobile-menu {
        display: block;
    }

    .carousel-dots {
        bottom: 2rem;
        gap: 1rem;
    }

    .dot {
        width: 16px;
        height: 16px;
        padding: 6px;
    }

    .historia-content {
        grid-template-columns: 1fr;
    }

    .historia-text h2 {
        text-align: center;
    }

    .historia-text .title-underline {
        margin: 0 auto var(--spacing-md);
    }

    .carousel-container {
        height: 300px;
    }

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

    .plato-image {
        height: 250px;
    }

    .ubicacion-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .chef-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .chef-image {
        max-width: 300px;
        margin: 0 auto;
    }

    .horarios-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .horarios-image {
        max-width: 300px;
        margin: 0 auto;
    }

    .horarios-info .section-title {
        text-align: center;
    }

    .horarios-info .title-underline {
        margin: 0 auto var(--spacing-md);
    }

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

    .ambiente-image {
        height: 250px;
    }

    .map-icons {
        flex-direction: column;
    }

    .contact-quick-info {
        grid-template-columns: 1fr;
    }

    .carousel-container-gallery {
        height: 300px;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
    }

    .carousel-prev {
        left: 0.75rem;
    }

    .carousel-next {
        right: 0.75rem;
    }

    .social-buttons-modern {
        flex-direction: column;
        align-items: center;
    }

    .social-btn-modern {
        width: 100%;
        max-width: 350px;
        min-width: unset;
    }

    .contact-gallery-section h3,
    .social-section h3 {
        font-size: 1.5rem;
    }
}

/* ============================================
   RESPONSIVE - TABLETS (768px a 1023px)
   ============================================ */

@media (min-width: 768px) and (max-width: 1023px) {
    html {
        font-size: 16px;
    }

    .navbar {
        padding: 1.5rem 0;
    }

    .navbar.scrolled {
        padding: 1rem 0;
    }

    .nav-wrapper {
        padding: 0 2rem;
    }

    .nav-menu {
        gap: 2.5rem;
    }

    .logo h1 {
        font-size: 1.75rem;
        margin-right: 2rem;
    }

    .galeria {
        padding: 5rem 0;
    }

    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
        padding: 0 2rem;
    }

    .plato-card {
        max-width: 400px;
        margin: 0 auto;
    }

    .plato-image {
        height: 320px;
    }

    .plato-content {
        padding: 1.5rem;
    }

    .plato-content h3 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .plato-content p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .section-title {
        font-size: 2.25rem;
        margin-bottom: 1.5rem;
    }

    .section-subtitle {
        font-size: 1.25rem;
        margin-bottom: 3rem;
    }

    .title-underline {
        margin-bottom: 2rem;
    }

    .ambientes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
        padding: 0 2rem;
    }

    .ambiente-card {
        max-width: 400px;
        margin: 0 auto;
    }

    .container {
        padding: 0 2.5rem;
    }

    .hero-content {
        padding: 0 3rem;
    }

    .hero-title {
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        margin-bottom: 2.5rem;
    }

    .btn {
        padding: 1rem 2.5rem;
        font-size: 1.125rem;
    }

    .hero-buttons {
        gap: 2rem;
    }

    .historia-content {
        gap: 3rem;
    }

    .chef-content {
        gap: 3rem;
    }

    .horarios-content {
        gap: 3rem;
    }

    .ubicacion-content {
        gap: 3rem;
    }

}

/* ============================================
   RESPONSIVE - MÓVILES (max-width: 480px)
   ============================================ */

@media (max-width: 480px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }

    .section-title {
        font-size: 1.75rem;
        word-break: break-word;
    }

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

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

    .hero {
        min-height: 100vh;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons .btn {
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
    }

    .carousel-dots {
        bottom: 1.5rem;
        gap: 0.875rem;
    }

    .dot {
        width: 14px;
        height: 14px;
    }

    .galeria-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .plato-image {
        height: 250px;
    }

    .nav-menu {
        width: 85%;
    }

    .logo h1 {
        font-size: 1.25rem;
    }

    .btn {
        font-size: 0.9rem;
        padding: 0.75rem 1.25rem;
    }

    .container {
        padding: 0 1rem;
    }
}

/* ============================================
   RESPONSIVE - OVERFLOW MÓVIL
   ============================================ */

@media (max-width: 768px) {
    section {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .hero {
        width: 100%;
        min-height: 100vh;
        padding: 0;
    }

    .hero-content {
        padding: 0 1.5rem;
        max-width: 100%;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        word-break: break-word;
        hyphens: auto;
    }

    .hero-subtitle {
        font-size: 1rem;
        word-break: break-word;
    }

    .hero-buttons {
        width: 100%;
        padding: 0;
        gap: 1rem;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 0.875rem 1.5rem;
    }

    .navbar {
        width: 100%;
        max-width: 100vw;
    }

    .nav-wrapper {
        width: 100%;
        padding: 0 1rem;
    }

    .logo h1 {
        font-size: 1.5rem;
        white-space: nowrap;
    }

    .nav-menu {
        width: 80%;
        max-width: 300px;
    }

    .plato-card,
    .ambiente-card,
    .chef-content {
        width: 100%;
        max-width: 100%;
    }

    .galeria-grid,
    .ambientes-grid {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .historia-content,
    .ubicacion-content,
    .horarios-content {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer,
    .footer-simple {
        width: 100%;
        overflow-x: hidden;
    }

    .footer-content {
        width: 100%;
    }

    .scroll-indicator {
        bottom: 1rem;
    }
}

/* ============================================
   DESKTOP Y LAPTOP (1024px+) - REDUCIR AL 90%
   ============================================ */

@media (min-width: 1024px) {
    html {
        font-size: 14.4px;
    }

    :root {
        --spacing-xs: 0.45rem;
        --spacing-sm: 0.9rem;
        --spacing-md: 1.8rem;
        --spacing-lg: 3.6rem;
        --spacing-xl: 5.4rem;
    }

    .container {
        max-width: 1080px;
    }

    .hero {
        min-height: 540px;
    }

    .plato-image {
        height: 270px;
    }

    .ambiente-image {
        height: 270px;
    }

    .chef-image,
    .horarios-image {
        max-width: 360px;
    }

    .carousel-container {
        height: 450px;
    }

    .navbar {
        padding: 1.125rem 0;
    }

    .navbar.scrolled {
        padding: 0.788rem 0;
    }

    .btn {
        padding: 0.788rem 1.8rem;
    }

    .btn-reserva {
        padding: 0.563rem 1.35rem;
    }

    .whatsapp-float {
        width: 54px;
        height: 54px;
        bottom: 1.8rem;
        right: 1.8rem;
        font-size: 1.8rem;
    }

    .galeria-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.8rem;
    }

    .ambientes-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.8rem;
    }

    .carousel-dots {
        bottom: 2.7rem;
    }

    .dot {
        width: 12.6px;
        height: 12.6px;
    }

    .social-links a {
        width: 40.5px;
        height: 40.5px;
    }

    .ubicacion-mapa iframe {
        height: 360px;
    }
}

/* ============================================
   RESPONSIVE - DESKTOP LARGE (1440px+)
   ============================================ */

@media (min-width: 1440px) {
    .container {
        max-width: 1200px;
    }

    .hero {
        min-height: 600px;
    }

    html {
        font-size: 15px;
    }
}