/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a365d;
    --secondary-color: #2d9cdb;
    --accent-color: #ff6b35;
    --light-color: #f8f9fa;
    --dark-color: #333;
    --gray-color: #6c757d;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

/* Header y Navegación */
.header {
    background-color: white;
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

.nav-link.active {
    color: var(--secondary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--secondary-color);
}

.nav-link.phone {
    background-color: var(--success-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-reserva {
    background-color: var(--accent-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-reserva:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--dark-color);
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
}

.location {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-quote {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: var(--accent-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    background-color: #e55a2b;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid white;
    cursor: pointer;
}

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

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.scroll-down {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    text-decoration: none;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

/* Secciones comunes */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-color);
    max-width: 600px;
    margin: 0 auto;
}

/* Experiencias Section */
.experiencias-section {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.experiencias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.experiencia-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.experiencia-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.experiencia-card.destacado {
    border: 3px solid var(--accent-color);
    transform: scale(1.05);
}

.badge-popular {
    position: absolute;
    top: 1rem;
    right: -2rem;
    background-color: var(--accent-color);
    color: white;
    padding: 0.5rem 2rem;
    transform: rotate(45deg);
    font-weight: 600;
    font-size: 0.8rem;
}

.experiencia-header {
    background-color: var(--primary-color);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.experiencia-header h3 {
    font-size: 1.3rem;
    margin: 0;
}

.experiencia-body {
    padding: 1.5rem;
}

.experiencia-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.experiencia-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--gray-color);
}

.experiencia-features i {
    color: var(--secondary-color);
}

.experiencia-precio {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: var(--light-color);
    border-radius: 10px;
}

.precio-cop {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.precio-usd {
    display: block;
    font-size: 1rem;
    color: var(--gray-color);
}

.btn-reserva-card {
    display: block;
    width: 100%;
    padding: 1rem;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    text-decoration: none;
}

.btn-reserva-card:hover {
    background-color: #2386c4;
}

/* Extras Section */
.extras-section {
    padding: 5rem 0;
}

.extras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.extra-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background-color: white;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.extra-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.extra-icon {
    width: 70px;
    height: 70px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.extra-icon i {
    font-size: 1.8rem;
    color: white;
}

.extra-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.extra-precio {
    margin-top: 1.5rem;
}

/* Gallery */
.gallery-preview {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-view {
    color: white;
    font-size: 2rem;
    transition: var(--transition);
}

.gallery-view:hover {
    color: var(--secondary-color);
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.footer-col p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

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

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

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

.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.contact-info i {
    color: var(--secondary-color);
    margin-top: 0.2rem;
}

.quick-links {
    list-style: none;
}

.quick-links li {
    margin-bottom: 0.8rem;
}

.quick-links a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: var(--transition);
}

.quick-links a:hover {
    opacity: 1;
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    z-index: 100;
    transition: var(--transition);
}

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

/* Page Hero */
.page-hero {
    height: 50vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-top: 80px;
}

.page-hero .container h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-hero .container p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Formularios */
.reserva-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.extras-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
}

/* Alertas */
.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.alert-error {
    background-color: #fee;
    border-left: 4px solid var(--danger-color);
    color: var(--danger-color);
}

.alert-error h4 {
    margin-bottom: 0.5rem;
}

.alert-error ul {
    list-style: none;
    padding-left: 1rem;
}

.alert-error li {
    margin-bottom: 0.3rem;
}

/* Media Queries */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .experiencia-card.destacado {
        transform: none;
    }
}

/* Estilos para el botón de WhatsApp grande */
.btn-whatsapp-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #25D366;
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin: 1.5rem 0;
}

.btn-whatsapp-large:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-action {
    text-align: center;
    margin: 2rem 0;
}

/* Estilos para el botón de WhatsApp normal */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #25D366;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
}

.whatsapp-alternative {
    text-align: center;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 10px;
    margin-top: 2rem;
    border-left: 4px solid #25D366;
}
/* En tu style.css - Agrega o modifica esto: */

/* Contenedor principal de galería */
.gallery-container {
    padding: 4rem 2rem;
}

/* Grid igual al del index */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 2rem;
}

/* Items individuales */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 250px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

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

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

/* Overlay con efecto de zoom */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-view {
    color: white;
    font-size: 2rem;
    background: rgba(0,0,0,0.7);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.gallery-view:hover {
    background: rgba(0,0,0,0.9);
    transform: scale(1.1);
}

/* Responsive - igual al index */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .gallery-item {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-container {
        padding: 2rem 1rem;
    }
}

/* Estilos para la página de éxito */
.success-section {
    padding: 5rem 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.success-card {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.success-icon {
    color: #4CAF50;
    font-size: 5rem;
    margin-bottom: 1.5rem;
}

.success-info {
    text-align: left;
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.resumen-reserva {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #007bff;
}

.whatsapp-action {
    margin: 2rem 0;
}

.btn-whatsapp-large {
    background: #25D366;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-whatsapp-large:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.success-tips ul {
    text-align: left;
    display: inline-block;
    margin: 1rem 0;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
}

.contact-emergency {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}
/* Estilos para el logo - TAMAÑO PEQUEÑO */
.logo-img {
    max-height: 40px; /* Reducido de 50px a 40px */
    width: auto;
    object-fit: contain;
}

/* Para pantallas móviles */
@media (max-width: 768px) {
    .logo-img {
        max-height: 35px; /* Reducido de 40px a 35px */
    }
}

/* Estilo para el logo en el hero - Más pequeño también */
.hero-logo img {
    max-width: 350px; /* Reducido de 400px a 350px */
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

@media (max-width: 768px) {
    .hero-logo img {
        max-width: 280px; /* Reducido de 300px a 280px */
    }
}

@media (max-width: 480px) {
    .hero-logo img {
        max-width: 220px; /* Reducido de 250px a 220px */
    }
}

/* ============================================
   ESTILOS PARA MENÚ HAMBURGUESA (VERSIÓN CORREGIDA)
   ============================================ */

/* Estilos base del icono hamburguesa - DEBE ESTAR EN EL BLOQUE PRINCIPAL, NO SOLO EN MEDIA QUERY */
.hamburger {
    display: none; /* Oculto por defecto en desktop */
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    z-index: 1000;
}

.bar {
    height: 3px;
    width: 100%;
    background-color: var(--dark-color); /* IMPORTANTE: Cambié de white a var(--dark-color) */
    border-radius: 10px;
    transition: 0.3s ease;
}

/* Media query para dispositivos móviles */
@media (max-width: 768px) {
    /* Mostrar el icono hamburguesa en móvil */
    .hamburger {
        display: flex;
    }
    
    /* Ocultar el menú normal y estilizarlo para móvil */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s;
        padding-top: 100px;
        z-index: 999;
        margin: 0;
        padding-left: 0;
        list-style: none;
    }
    
    /* Mostrar el menú cuando está activo */
    .nav-menu.active {
        left: 0;
    }
    
    /* Estilos para los elementos del menú en móvil */
    .nav-menu li {
        margin: 1.5rem 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 0.5rem 0;
        color: white !important; /* Forzar color blanco en menú móvil */
    }
    
    .nav-link.active {
        color: var(--secondary-color) !important;
    }
    
    .nav-link.phone {
        background-color: var(--success-color);
        color: white;
        padding: 0.8rem 1.5rem;
        border-radius: 25px;
        width: 80%;
        margin: 0 auto;
    }
    
    .btn-reserva {
        display: block;
        margin: 1rem auto;
        width: 80%;
        max-width: 250px;
    }
    
    /* Animación del icono hamburguesa a X */
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
        background-color: white; /* Cambiar a blanco cuando está activo */
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
        background-color: white; /* Cambiar a blanco cuando está activo */
    }
    
    /* Asegurar que el logo no sea demasiado grande en móvil */
    .logo-img {
        max-height: 70px !important;
    }
    
    /* Header ajustado para móvil */
    .navbar {
        padding: 15px;
        background-color: white;
    }
    
    /* El header debe verse bien en móvil */
    .header {
        background-color: white;
    }
}

/* ============================================
   SOLUCIÓN DEFINITIVA PARA MENÚ HAMBURGUESA
   ============================================ */

/* 1. RESET DE ESTILOS DUPLICADOS - Eliminar conflictos */
.hamburger,
.bar {
    all: unset; /* Resetear cualquier estilo previo */
}

/* 2. ESTILOS NUEVOS PARA HAMBURGUESA */
.hamburger {
    display: none; /* Oculto en desktop */
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001;
    margin-left: auto;
}

.hamburger .bar {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #333; /* COLOR VISIBLE - NEGRO */
    border-radius: 3px;
    transition: all 0.3s ease;
    left: 0;
}

.hamburger .bar:nth-child(1) {
    top: 0;
}

.hamburger .bar:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger .bar:nth-child(3) {
    bottom: 0;
}

/* 3. ESTILOS PARA MÓVIL (menos de 768px) */
@media screen and (max-width: 768px) {
    /* Mostrar el icono hamburguesa */
    .hamburger {
        display: block !important;
    }
    
    /* Ocultar menú normal, mostrar menú móvil */
    .nav-menu {
        position: fixed !important;
        left: -100% !important;
        top: 0 !important;
        flex-direction: column !important;
        background-color: rgba(0, 0, 0, 0.98) !important;
        width: 100% !important;
        height: 100vh !important;
        text-align: center !important;
        transition: all 0.5s ease !important;
        padding-top: 120px !important;
        z-index: 1000 !important;
        margin: 0 !important;
        padding-left: 0 !important;
    }
    
    /* Mostrar menú cuando está activo */
    .nav-menu.active {
        left: 0 !important;
    }
    
    /* Estilos para los items del menú móvil */
    .nav-menu li {
        margin: 20px 0 !important;
        width: 100% !important;
    }
    
    .nav-link {
        color: white !important;
        font-size: 1.3rem !important;
        padding: 15px !important;
        display: block !important;
        width: 100% !important;
    }
    
    .nav-link.active {
        color: #2d9cdb !important;
        background: rgba(255, 255, 255, 0.1) !important;
    }
    
    .nav-link.phone {
        background: #28a745 !important;
        color: white !important;
        padding: 15px !important;
        margin: 20px auto !important;
        width: 80% !important;
        border-radius: 30px !important;
    }
    
    .btn-reserva {
        background: #ff6b35 !important;
        color: white !important;
        padding: 15px 30px !important;
        margin: 20px auto !important;
        width: 80% !important;
        border-radius: 30px !important;
        font-size: 1.2rem !important;
        display: block !important;
    }
    
    /* Animación hamburguesa a X */
    .hamburger.active .bar:nth-child(1) {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
        background: white !important;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(3) {
        bottom: 50%;
        transform: translateY(50%) rotate(-45deg);
        background: white !important;
    }
    
    /* Ajustar header en móvil */
    .navbar {
        padding: 15px 20px !important;
        background: white !important;
    }
    
    /* Prevenir scroll cuando menú está abierto */
    body.menu-open {
        overflow: hidden !important;
    }
}