/* ===== VARIABLES Y RESET ===== */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

html {
    overflow-x: hidden;
    width: 100%;
}

:root {
    --dorado: #8A623E;
    --dorado-oscuro: #7A5536;
    --marron: #4A3B2A;
    --gris-oscuro: #2C2C2C;
    --gris-claro: #F5F5F5;
    --blanco: #FFFFFF;
    --negro: #121212;
    --texto: #333333;
    --fuente-titulos: 'Playfair Display', serif;
    --fuente-texto: 'Montserrat', sans-serif;
}

body {
    font-family: var(--fuente-texto);
    color: var(--texto);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

h1, h2, h3 {
    font-family: var(--fuente-titulos);
    font-weight: 600;
}

.seccion-subtitulo {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--dorado);
    margin-bottom: 10px;
}

.seccion-titulo {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--marron);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primario {
    background: var(--dorado);
    color: var(--blanco);
}

.btn-primario:hover {
    background: transparent;
    border-color: var(--dorado);
    color: var(--dorado);
}

.btn-secundario {
    background: transparent;
    border-color: var(--blanco);
    color: var(--blanco);
}

.btn-secundario:hover {
    background: var(--blanco);
    color: var(--texto);
}

/* ===== HEADER CON EFECTO REDUCIBLE ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 2px solid rgba(138, 98, 62, 0.1);
    z-index: 1000;
    height: 85px;
    display: flex;
    align-items: center;
    transition: all 0.4s ease;
}

.header.scrolled {
    height: 70px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom-color: var(--dorado);
    box-shadow: 0 4px 20px rgba(138, 98, 62, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    height: 100%;
}

/* Logo */
.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 8px;
    height: 100%;
}

.logo-img {
    height: 45px;
    width: 45px;
    background: var(--dorado);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.header.scrolled .logo-img {
    height: 40px;
    width: 40px;
    font-size: 1.1rem;
}

.logo img {
    height: 300px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    display: block;
    transition: all 0.3s ease;
}

.header.scrolled .logo img {
    height: 45px;
}

.nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--texto);
    font-weight: 500;
    font-size: 0.95rem;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--dorado);
}

.header-acciones {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.telefono-header {
    color: var(--marron);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    background: var(--gris-claro);
    padding: 6px 12px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.telefono-header i {
    color: var(--dorado);
    font-size: 0.95rem;
}

.telefono-header:hover {
    background: var(--dorado);
    color: white;
}

.telefono-header:hover i {
    color: white;
}

.btn-reservar-header {
    background: var(--dorado);
    color: white;
    padding: 6px 16px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    white-space: nowrap;
    border: 2px solid var(--dorado);
    transition: all 0.3s ease;
}

.btn-reservar-header:hover {
    background: transparent;
    color: var(--dorado);
}

.menu-hamburguesa {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--marron);
    cursor: pointer;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    padding: 0;
}

/* ===== MENÚ MÓVIL ===== */
@media screen and (max-width: 900px) {
    .nav-links {
        display: none;
    }
    
    .nav-menu {
        position: fixed;
        top: 85px;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 85px);
        background: var(--blanco);
        box-shadow: 5px 0 30px rgba(0,0,0,0.1);
        transition: all 0.4s ease;
        z-index: 1000;
        padding: 30px 20px;
        overflow-y: auto;
    }
    
    .header.scrolled .nav-menu {
        top: 70px;
        height: calc(100vh - 70px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu .nav-links {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-menu .nav-links a {
        display: block;
        font-size: 1.1rem;
        padding: 10px 15px;
        border-radius: 8px;
    }
    
    .menu-hamburguesa {
        display: flex;
    }
    
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .header-acciones {
        gap: 8px;
    }
    
    .telefono-header span {
        display: none;
    }
    
    .telefono-header {
        padding: 8px;
        border-radius: 50%;
    }
    
    .telefono-header i {
        font-size: 1.2rem;
    }
    
    .logo img {
        height: 90px;
        max-width: 130px;
    }
    
    .header.scrolled .logo img {
        height: 40px;
    }
}

/* ===== HERO ===== */
.hero {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(rgba(85, 53, 23, 0.788), rgba(3, 3, 3, 0.6)), url('../images/platos\ \(10\).jpeg') no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 0;
    width: 100%;
}

.hero-contenido {
    max-width: 800px;
    padding: 0 20px;
    width: 100%;
}

.hero-antetitulo {
    letter-spacing: 4px;
    margin-bottom: 15px;
    color: white;
}

.hero-titulo {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-titulo span {
    color: white;
    display: block;
}

.hero-subtitulo {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-botones {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== COCINA ===== */
.cocina {
    padding: 80px 0;
    background: #f8f8f8;
    width: 100%;
}

.cocina-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.cocina-card {
    background: white;
    padding: 20px 15px 25px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.cocina-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(138, 98, 62, 0.15);
    border-color: var(--dorado);
}

.cocina-imagen-container {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.cocina-imagen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cocina-card:hover .cocina-imagen {
    transform: scale(1.1);
}

/* ===== HISTORIA ===== */
.historia {
    padding: 80px 0;
    width: 100%;
}

.historia-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.historia-imagen {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.historia-imagen:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 40px rgba(0,0,0,0.2);
}

.historia-imagen img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.historia-imagen:hover img {
    transform: scale(1.05);
}

/* ===== ATMÓSFERA ===== */
.atmosfera {
    padding: 80px 0;
    background: var(--gris-claro);
    width: 100%;
}

.atmosfera-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.atmosfera-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1/1.2;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.atmosfera-item:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.atmosfera-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.atmosfera-item:hover img {
    transform: scale(1.1);
}

.atmosfera-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, black, transparent);
    padding: 25px 15px 15px;
    color: white;
}

.atmosfera-frase {
    text-align: center;
    font-size: 1.6rem;
    font-family: var(--fuente-titulos);
    font-style: italic;
    color: var(--marron);
    margin: 40px auto 0;
    max-width: 900px;
    padding: 0 20px;
}

/* ===== ESTADÍSTICAS CON ANIMACIÓN ===== */
.stats-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 50px 0 20px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 20px 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    min-width: 160px;
    border: 1px solid rgba(138, 98, 62, 0.1);
}

.stat-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 25px rgba(138, 98, 62, 0.15);
    border-color: var(--dorado);
}

.stat-numero {
    display: block;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dorado);
    font-family: var(--fuente-titulos);
    line-height: 1.2;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-numero {
    transform: scale(1.1);
    color: var(--dorado-oscuro);
}

.stat-texto {
    display: block;
    font-size: 1rem;
    color: var(--texto);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

/* ===== MENÚ COMPLETO ===== */
.menu-completo {
    padding: 80px 0 60px;
    background: var(--blanco);
    scroll-margin-top: 100px;
    width: 100%;
}

.submenu-carta {
    position: sticky;
    top: 85px;
    background: var(--blanco);
    border-bottom: 2px solid var(--gris-claro);
    padding: 15px 0;
    margin-bottom: 40px;
    z-index: 500;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    width: 100%;
    transition: all 0.3s ease;
}

.header.scrolled ~ .menu-completo .submenu-carta,
.menu-completo .submenu-carta {
    top: 70px;
}

.submenu-contenedor {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.submenu-link {
    text-decoration: none;
    font-weight: 600;
    color: var(--texto);
    padding: 5px 0;
    border-bottom: 3px solid transparent;
    transition: 0.2s;
    font-size: 1rem;
}

.submenu-link:hover,
.submenu-link.activo {
    color: var(--dorado);
    border-bottom-color: var(--dorado);
}

.carta-categoria {
    margin-bottom: 50px;
    scroll-margin-top: 100px;
}

.carta-titulo {
    font-size: 2rem;
    color: var(--marron);
    border-bottom: 2px solid var(--dorado);
    padding-bottom: 10px;
    margin-bottom: 25px;
}

.plato-lista {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 30px;
}

.plato-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 1px dashed #ddd;
    padding-bottom: 8px;
    transition: all 0.3s ease;
}

.plato-item:hover {
    border-bottom-color: var(--dorado);
    padding-left: 5px;
    padding-right: 5px;
}

.plato-nombre {
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.plato-item:hover .plato-nombre {
    color: var(--dorado);
}

.plato-desc {
    font-size: 0.9rem;
    color: #666;
    margin-top: 4px;
}

.plato-precio {
    font-weight: 700;
    color: var(--dorado);
    font-size: 1.1rem;
    white-space: nowrap;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.plato-item:hover .plato-precio {
    transform: scale(1.05);
}

.nota-carta {
    text-align: center;
    margin-top: 30px;
    font-style: italic;
    color: #777;
}

.bcarta {
    background: var(--dorado);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--dorado);
    cursor: pointer;
    margin: 20px auto;
    display: inline-block;
    transition: all 0.3s ease;
}

.bcarta:hover {
    background: transparent;
    color: var(--dorado);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(138, 98, 62, 0.2);
}

/* ===== CELEBRACIONES ===== */
.celebraciones {
    padding: 80px 0;
    background: var(--gris-oscuro);
    color: white;
    width: 100%;
}

.celebraciones-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.celebraciones .seccion-titulo {
    color: white;
}

.celebraciones-lista {
    list-style: none;
    margin: 25px 0;
}

.celebraciones-lista li {
    margin-bottom: 10px;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.celebraciones-lista li:hover {
    transform: translateX(8px);
}

.celebraciones-lista i {
    color: var(--dorado);
    transition: transform 0.3s ease;
}

.celebraciones-lista li:hover i {
    transform: scale(1.2);
}

.celebraciones-imagen {
    overflow: hidden;
    border-radius: 20px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.celebraciones-imagen:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.celebraciones-imagen img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.celebraciones-imagen:hover img {
    transform: scale(1.05);
}

/* ===== TESTIMONIOS ===== */
.testimonios {
    padding: 80px 0;
    width: 100%;
}

.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonio-card {
    background: var(--gris-claro);
    padding: 25px;
    border-radius: 15px;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.testimonio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 25px rgba(138, 98, 62, 0.15);
    border-color: var(--dorado);
}

.testimonio-estrellas {
    color: gold;
    margin-bottom: 12px;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.testimonio-card:hover .testimonio-estrellas {
    transform: scale(1.1);
}

/* ===== GALERÍA CON IMÁGENES UNIFORMES ===== */
.galeria {
    padding: 60px 0;
    width: 100%;
    background: var(--gris-claro);
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.galeria-item {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    cursor: pointer;
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.galeria-item:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 25px rgba(138, 98, 62, 0.3);
    z-index: 5;
}

.galeria-item:hover img {
    transform: scale(1.1);
}

/* ===== RESERVA ===== */
.reserva {
    padding: 80px 0;
    background: #eaeaea;
    width: 100%;
}

.reserva-contenedor {
    max-width: 650px;
    margin: 0 auto;
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.4s ease;
}

.reserva-contenedor:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 40px rgba(138, 98, 62, 0.2);
}

.res-telefono {
    font-size: 2.5rem;
    color: var(--marron);
    margin: 25px 0 20px;
    font-family: var(--fuente-titulos);
    font-weight: 700;
    transition: all 0.3s ease;
    word-break: break-word;
}

.reserva-contenedor:hover .res-telefono {
    color: var(--dorado);
    transform: scale(1.03);
}

.res-telefono i {
    color: var(--dorado);
    margin-right: 10px;
    transition: transform 0.5s ease;
}

.reserva-contenedor:hover .res-telefono i {
    transform: rotate(10deg) scale(1.1);
}

.btn-llamar {
    background: var(--dorado);
    color: white;
    padding: 15px 35px;
    font-size: 1.2rem;
    border-radius: 50px;
    display: inline-block;
    margin: 15px 0;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--dorado);
}

.btn-llamar:hover {
    background: transparent;
    color: var(--dorado);
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(138, 98, 62, 0.3);
}

.reserva-nota {
    color: #666;
    margin-top: 15px;
    font-size: 0.95rem;
}

/* ===== CONTACTO ===== */
.contacto {
    padding: 80px 0;
    width: 100%;
}

.contacto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contacto-grid iframe {
    width: 100%;
    height: 350px;
    border-radius: 15px;
    transition: all 0.4s ease;
}

.contacto-grid iframe:hover {
    transform: scale(1.01);
    box-shadow: 0 15px 25px rgba(0,0,0,0.1);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--negro);
    color: #aaa;
    padding: 50px 0 30px;
    width: 100%;
}

.footer-principal {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo img {
    width: 200px;
    height: 200px;
    transition: transform 0.3s ease;
}

.footer-logo img:hover {
    transform: scale(1.1);
}

.footer a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--dorado);
}

.qr {
    width: 70px;
    height: 70px;
    margin-top: 10px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.qr:hover {
    transform: scale(1.1);
}

/* ===== BOTÓN FLOTANTE ===== */
.btn-flotante {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: var(--dorado);
    color: white;
    padding: 12px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(138, 98, 62, 0.4);
    z-index: 99;
    transition: all 0.3s ease;
    border: 2px solid var(--dorado);
}

.btn-flotante:hover {
    background: transparent;
    color: var(--dorado);
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(138, 98, 62, 0.5);
}

/* ===== ANIMACIONES ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

.zoom-in {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.zoom-in.visible {
    opacity: 1;
    transform: scale(1);
}

.slide-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ===== RESPONSIVE MÓVIL ===== */
@media screen and (max-width: 768px) {
    .hero-titulo {
        font-size: 2.5rem;
    }
    
    .hero-subtitulo {
        font-size: 1.1rem;
    }
    
    .hero-botones {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-botones .btn {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }
    
    .cocina-grid,
    .atmosfera-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonios-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .historia-grid,
    .celebraciones-grid,
    .contacto-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .historia-contenido {
        order: 2;
    }
    
    .historia-imagen {
        order: 1;
    }
    
    .plato-lista {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-item {
        width: 100%;
        max-width: 280px;
        padding: 15px 20px;
    }
    
    .stat-numero {
        font-size: 2.5rem;
    }
    
    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .reserva-contenedor {
        padding: 30px 20px;
    }
    
    .res-telefono {
        font-size: 2rem;
    }
    
    .btn-llamar {
        padding: 12px 25px;
        font-size: 1.1rem;
    }
    
    .footer-principal {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .footer-logo {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .btn-flotante span {
        display: none;
    }
    
    .btn-flotante {
        padding: 12px;
        border-radius: 50%;
        bottom: 20px;
        right: 20px;
    }
    
    .btn-flotante i {
        font-size: 1.3rem;
        margin: 0;
    }
    
    .logo img {
        height: 90px;
        max-width: 130px;
    }
    
    .seccion-titulo {
        font-size: 2rem;
    }
    
    .contacto-grid iframe {
        height: 280px;
    }
}

@media screen and (max-width: 480px) {
    .hero-titulo {
        font-size: 2rem;
    }
    
    .hero-antetitulo {
        font-size: 0.8rem;
    }
    
    .atmosfera-frase {
        font-size: 1.3rem;
    }
    
    .galeria-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .galeria-item {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .res-telefono {
        font-size: 1.6rem;
    }
    
    .res-telefono i {
        display: block;
        margin-bottom: 8px;
    }
    
    .contacto-grid iframe {
        height: 250px;
    }
    
    .logo img {
        height: 90px;
        max-width: 120px;
    }
    
    .logo-img {
        height: 40px;
        width: 40px;
        font-size: 1.1rem;
    }
    
    .stat-numero {
        font-size: 2.2rem;
    }
    
    .stat-texto {
        font-size: 0.9rem;
    }
    
    .btn-reservar-header {
        padding: 5px 12px;
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 360px) {
    .hero-titulo {
        font-size: 1.8rem;
    }
    
    .logo img {
        height: 90px;
        max-width: 100px;
    }
    
    .logo-img {
        height: 35px;
        width: 35px;
        font-size: 1rem;
    }
    
    .btn-reservar-header {
        display: none;
    }
    
    .telefono-header {
        padding: 6px;
    }
}