/* 
   HOME.CSS - ESTILOS ESPECÍFICOS DE LA PORTADA
   Versión Corregida: Botón Badge Responsive (Sin desbordamientos)
*/

/* --- 1. HERO SECTION PREMIUM --- */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
    padding: 0; 
}

/* --- CARRUSEL DE FONDO (SLIDER) --- */
.hero-slideshow {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1; /* Detrás del overlay */
}

.hero-slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    
    /* Estado inicial: Invisible */
    opacity: 0;
    
    /* Transición suave de 2 segundos SOLO para la opacidad */
    transition: opacity 2000ms ease-in-out;
    
    /* Quitamos la transformación (zoom) */
    will-change: opacity;
}

/* Estado Activo: Visible (SIN ZOOM) */
.hero-slide.active {
    opacity: 1;
    /* BORRAMOS la línea "transform: scale(1.1);" */
}

/* Aseguramos que el overlay siga encima */
.hero-overlay {
    z-index: 2; /* Encima del slider */
}
.hero-content-wrapper {
    z-index: 3; /* Texto encima de todo */
}

/* Overlay */
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(7, 10, 15, 0.3) 0%,
        rgba(7, 10, 15, 0.5) 50%,
        rgba(7, 10, 15, 0.9) 100%
    );
    z-index: 2;
}

/* Contenedor del Contenido */
.hero-content-wrapper {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end; /* Alineado abajo */
    height: 100%;
    width: 100%;
    max-width: 1400px;
    padding-bottom: 15vh; /* Espacio inferior */
}

/* --- TEXTOS --- */
.hero-texts {
    margin-bottom: 2rem;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.8rem); 
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.6);
    white-space: nowrap; 
}

.hero-title br { display: none; }

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.9rem, 1.5vw, 3.5rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    max-width: 700px;
    margin-bottom: 0;
}


/* --- BADGE PREMIUM (BOTÓN) --- */
.hero-badge-container {
    display: flex;
    justify-content: center;
    width: 100%; /* Asegura que el contenedor ocupe ancho disponible */
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    
    /* Fondo Bronce Lujo */
    background: linear-gradient(135deg, rgba(45, 35, 25, 0.9), rgba(60, 50, 35, 0.95));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    
    /* Borde */
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 50px;
    
    /* Tamaño Desktop */
    padding: 8px 30px 8px 12px; 
    max-width: 100%; /* Previene desbordamiento */
    
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Icono */
.badge-icon-box {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(255,255,255,0.15);
    padding-right: 10px;
    
    /* CRUCIAL: Evita que el logo se aplaste */
    flex-shrink: 0; 
}

.badge-logo-img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Textos del Badge */
.badge-info {
    display: flex;
    flex-direction: column;
    text-align: left;
    justify-content: center;
    
    /* CRUCIAL: Permite que el texto se adapte sin romper el flex */
    flex: 1; 
    min-width: 0; 
}

.badge-title {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.1;
    white-space: nowrap; 
}

.badge-desc {
    color: var(--color-gold);
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
    font-weight: 500;
    
    /* En desktop permitimos una línea, en móvil cambiaremos esto */
    white-space: nowrap; 
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Hover */
.premium-badge:hover {
    transform: translateY(-3px);
    border-color: var(--color-gold);
    background: linear-gradient(135deg, rgba(70, 55, 45, 0.95), rgba(90, 75, 50, 1));
    box-shadow: 0 10px 25px rgba(0,0,0,0.4), 0 0 20px rgba(212, 175, 55, 0.3);
}


/* --- INDICADOR SCROLL --- */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.8;
    z-index: 10;
}

.scroll-indicator span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 5px;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--color-gold), transparent);
}


/* --- SECCIONES GENERALES --- */
.section-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}
.section-title span {
    display: block;
    color: var(--color-emerald);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.services-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; text-align: center;
}
.service-item svg { width: 48px; height: 48px; stroke: var(--color-gold); margin-bottom: 1rem; transition: transform 0.2s ease; }
.service-item:hover svg { transform: scale(1.1); }

.room-card { overflow: hidden; border-radius: 16px; background: #fff; box-shadow: 0 8px 32px 0 rgba(7, 10, 15, 0.1); transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.room-card:hover { transform: translateY(-5px); }
.room-img { height: 250px; background-color: #ddd; background-size: cover; background-position: center; }
.room-body { padding: 1.5rem; }
.room-price { color: var(--color-emerald); font-weight: 700; font-size: 1.2rem; display: block; margin-bottom: 0.5rem; }

.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.2s; }
.reveal-delay-2 { transition-delay: 0.4s; }
.reveal-delay-3 { transition-delay: 0.6s; }


/* --- RESPONSIVE MEDIA QUERIES (CORRECCIÓN TOTAL) --- */

@media (max-width: 1024px) {
    .hero-title {
        white-space: normal;
        font-size: clamp(2rem, 5vw, 3rem);
    }
    .hero-title br { display: block; }
    
    .hero-content-wrapper {
        padding-bottom: 20vh;
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 768px) {
    /* 1. Contenedor del Botón: Espacio de seguridad */
    .hero-badge-container {
        padding: 0 15px; /* Evita que toque los bordes de la pantalla */
        width: 100%;
        box-sizing: border-box;
    }

    /* 2. El Botón mismo */
    .premium-badge {
        width: auto; /* Que se adapte al contenido */
        max-width: 100%; /* Nunca más ancho que la pantalla */
        padding: 8px 15px; /* Padding reducido */
        gap: 10px;
    }
    
    /* 3. El Texto dentro */
    .badge-info {
        /* Permite que el texto se rompa si es necesario */
        white-space: normal;
        word-break: break-word;
    }
    
    .badge-title {
        font-size: 0.85rem;
        /* Si el título es largo, permite salto de línea en móvil */
        white-space: normal; 
    }
    
    .badge-desc {
        font-size: 0.55rem;
        /* CRUCIAL: Permitir que "EXPERIENCIAS..." baje a 2 líneas si no cabe */
        white-space: normal; 
        line-height: 1.2;
    }
    
    .scroll-indicator { bottom: 20px; }
}

/* --- LÓGICA DE TEXTO RESPONSIVE (DESKTOP VS MOBILE) --- */

/* 1. Por defecto (Escritorio): Ocultar texto móvil */
.text-mobile {
    display: none;
}

.text-desktop {
    display: inline;
}

/* 2. En Móvil (Menos de 768px) */
@media (max-width: 768px) {
    
    /* Ocultar el texto largo de escritorio */
    .text-desktop {
        display: none;
    }
    
    /* Mostrar el texto corto "Descubre Más" */
    .text-mobile {
        display: inline-block;
        font-size: 0.95rem; /* Un poco más grande para leer bien */
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    /* Ocultar el subtítulo dorado para limpiar el botón */
    .badge-desc {
        display: none;
    }
    
    /* Ajustar el botón para que quede centrado y compacto */
    .premium-badge {
        padding: 10px 25px 10px 10px; /* Padding equilibrado */
        gap: 15px;
        width: auto;
        max-width: fit-content;
    }
    
    /* Alineación vertical perfecta del texto */
    .badge-info {
        justify-content: center;
        align-items: flex-start; /* O center si prefieres */
    }
    
    /* Ajustar tamaño del icono en móvil */
    .badge-icon-box {
        width: 32px;
        height: 32px;
        padding-right: 12px;
    }
}


/* --- SECCIÓN DESTINOS (ACORDEÓN PREMIUM 6 ITEMS) --- */
.destinations-section {
    padding: 80px 0 100px;
    background-color: #0b0e14;
    color: #fff;
}

/* Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 20px;
}
.section-title-main {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.5rem;
}

/* --- CONTENEDOR FLEX --- */
.destinations-container {
    display: flex;
    width: 100%;
    height: 600px; /* Altura generosa para las fotos */
    padding: 0 2vw; /* Un poco de margen a los lados */
    gap: 10px;
    box-sizing: border-box;
}

/* TARJETA INDIVIDUAL */
.dest-card {
    position: relative;
    height: 100%;
    border-radius: 20px; /* Bordes redondos */
    overflow: hidden;
    cursor: pointer;
    
    /* ESTADO CERRADO (Por defecto) */
    flex: 0.5; /* Ocupa poco espacio */
    transition: flex 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    display: flex;
    align-items: flex-end; /* Texto abajo */
}

/* IMAGEN DE FONDO (Para efecto Zoom) */
.dest-bg {
    position: absolute;
    inset: 0; /* Esto significa top:0, left:0, right:0, bottom:0 */
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 1.5s ease;
    z-index: 0; /* Al fondo */
}

/* Oscurecimiento */
.dest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1));
    opacity: 0.8;
    transition: opacity 0.5s;
}

/* CONTENIDO */
.dest-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    width: 100%;
    min-width: 300px; /* Evita que el texto se aplaste cuando está cerrado */
}

/* Número decorativo */
.dest-number {
    font-size: 3rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.3);
    margin-bottom: 10px;
    line-height: 1;
    opacity: 0; /* Oculto cuando está cerrado */
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.dest-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
    white-space: nowrap; /* Título en una línea */
    transform-origin: left bottom;
    transition: all 0.5s;
}

/* Texto descriptivo (Oculto al inicio) */
.dest-details {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.6s ease;
}
.dest-details p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 15px;
    margin-top: 10px;
    line-height: 1.5;
    white-space: normal; /* Texto normal */
}

.btn-link-gold {
    color: var(--color-gold);
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--color-gold);
    padding-bottom: 3px;
    text-decoration: none;
}


/* --- ESTADOS INTERACTIVOS (HOVER/ACTIVE) --- */

/* Cuando pasas el mouse por CUALQUIER tarjeta */
.dest-card:hover {
    flex: 3; /* Se expande mucho más que las otras (0.5 vs 3) */
}

/* Zoom en la foto */
.dest-card:hover .dest-bg {
    transform: scale(1.1); /* Zoom in sutil */
}

/* Overlay más claro */
.dest-card:hover .dest-overlay {
    opacity: 0.4;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

/* Mostrar contenido */
.dest-card:hover .dest-details {
    max-height: 200px;
    opacity: 1;
}

.dest-card:hover .dest-number {
    opacity: 1;
    transform: translateY(0);
}

.dest-card:hover h3 {
    font-size: 2rem; /* Título crece */
    color: var(--color-gold);
}


/* --- RESPONSIVE MÓVIL (CARRUSEL SWIPE) --- */
@media (max-width: 1024px) {
    .destinations-container {
        display: flex;
        flex-wrap: nowrap; /* Forzar línea horizontal */
        overflow-x: auto;  /* Scroll lateral */
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        height: 500px;
        padding-bottom: 20px;
        gap: 15px;
    }
    
    .dest-card {
        flex: 0 0 85%; /* Tarjetas fijas al 85% del ancho */
        scroll-snap-align: center;
        border-radius: 15px;
    }
    
    /* En móvil, desactivar hover y mostrar siempre la info */
    .dest-card .dest-details {
        max-height: 200px;
        opacity: 1;
    }
    .dest-card .dest-number {
        opacity: 1;
        transform: translateY(0);
        font-size: 2rem;
    }
    .dest-card h3 {
        white-space: normal; /* Permitir 2 líneas */
        font-size: 1.5rem;
    }
    
    /* Desactivar expansión flex */
    .dest-card:hover { flex: 0 0 85%; }
}

/* --- CORRECCIÓN VISIBILIDAD: SECCIÓN DESTINOS --- */

/* 1. El pequeño subtítulo (Iquitos, Perú) */
.destinations-section .sub-title {
    color: var(--color-gold); /* Dorado brillante */
    font-weight: 600;
    opacity: 1;
    letter-spacing: 2px;
}

/* 2. Título Principal (Tesoros de la...) */
.destinations-section .section-title-main {
    color: #ffffff; /* Blanco al 100% */
    text-shadow: 0 2px 15px rgba(0,0,0,0.5); /* Sombra para despegarlo del fondo */
}

/* 3. La palabra destacada (Selva) */
/* Usamos !important para forzar el cambio sobre el estilo en línea del HTML */
.destinations-section .section-title-main span {
    color: #4ade80 !important; /* Un verde mucho más luminoso y legible */
    /* O si prefieres dorado: color: var(--color-gold) !important; */
    text-shadow: 0 0 20px rgba(74, 222, 128, 0.4); /* Pequeño resplandor */
}

/* 4. Descripción (Texto de abajo) */
.destinations-section .section-desc {
    color: #e2e8f0; /* Gris muy claro, casi blanco */
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto; /* Asegura el centrado */
    opacity: 0.9;
}


/* --- SECCIÓN HABITACIONES (CLEAN LUXURY) --- */
.rooms-section {
    padding: 100px 0;
    background-color: #f4f6f8; /* Gris muy claro / Blanco humo */
    color: #333;
}

/* Grid Layout */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

/* Tarjeta Premium */
.room-card-premium {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Sombra sutil */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.room-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Imagen de la habitación */
.room-image-box {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.room-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.room-card-premium:hover .room-bg {
    transform: scale(1.1); /* Zoom suave al pasar mouse */
}

/* Etiqueta flotante (Ej: Vista Jardín) */
.room-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.9);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #0B3D2E; /* Verde selva */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Contenido */
.room-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.room-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1f2c;
    margin-bottom: 10px;
}

.room-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Iconos de comodidades */
.room-amenities {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.room-amenities span {
    font-size: 0.8rem;
    color: #555;
    background: #f0f2f5;
    padding: 5px 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Botones de Acción */
.room-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

/* Botón "Ver Detalles" (Texto simple) */
.btn-text {
    color: #555;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s;
}
.btn-text:hover {
    color: var(--color-jungle);
}

/* Botón "Reservar" (Dorado Sólido) */
.btn-gold-solid {
    background: var(--color-gold);
    color: #000;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-gold-solid:hover {
    background: #c5a028;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .rooms-grid {
        grid-template-columns: 1fr; /* Una columna en móvil */
        gap: 2rem;
    }
    .room-image-box {
        height: 220px;
    }
}

/* --- ESTILOS DE LA SECCIÓN (Card Base) --- */
.rooms-section {
    padding: 100px 0;
    background-color: #0b0e14; /* Mantenemos oscuro para continuidad */
    color: #fff;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.room-card-premium {
    background: #151922;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.room-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border-color: var(--color-gold);
}

.room-image-box { height: 220px; position: relative; overflow: hidden; }
.room-bg { width: 100%; height: 100%; background-size: cover; transition: transform 0.5s; }
.room-card-premium:hover .room-bg { transform: scale(1.1); }

.room-badge {
    position: absolute; top: 15px; right: 15px;
    background: rgba(0,0,0,0.7); color: #fff;
    padding: 5px 12px; border-radius: 30px;
    font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px;
    backdrop-filter: blur(5px);
}

.room-content { padding: 25px; flex-grow: 1; display: flex; flex-direction: column; }
.room-content h3 { font-family: 'Montserrat', sans-serif; font-size: 1.2rem; color: #fff; margin-bottom: 10px; }
.room-content p { font-size: 0.9rem; color: #aaa; margin-bottom: 20px; line-height: 1.5; flex-grow: 1; }

.room-actions {
    display: flex; justify-content: space-between; align-items: center;
    border-top: 1px solid rgba(255,255,255,0.1); padding-top: 15px;
}
.btn-text { color: var(--color-gold); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.btn-icon { color: var(--color-gold); transition: transform 0.3s; }
.room-card-premium:hover .btn-icon { transform: translateX(5px); }


/* --- ESTILOS DEL MODAL PREMIUM --- */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.85); /* Fondo muy oscuro */
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex; justify-content: center; align-items: center;
    opacity: 0; visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.modal-overlay.active { opacity: 1; visibility: visible; }

.modal-container {
    background: #1a1f2c;
    width: 100%; max-width: 900px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    border: 1px solid rgba(212, 175, 55, 0.3); /* Borde dorado fino */
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    max-height: 90vh; /* Evita que se salga en pantallas chicas */
    display: flex; flex-direction: column;
}

.modal-overlay.active .modal-container { transform: translateY(0); }

.modal-close {
    position: absolute; top: 15px; right: 15px;
    background: rgba(0,0,0,0.5); color: #fff;
    border: none; width: 35px; height: 35px; border-radius: 50%;
    font-size: 1.5rem; cursor: pointer; z-index: 10;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.3s;
}
.modal-close:hover { background: var(--color-gold); color: #000; }

/* Grid Interno del Modal */
.modal-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr; /* Imagen más grande que texto */
    height: 100%;
    overflow: hidden;
}

/* Columna Izquierda (Imagen) */
.modal-gallery {
    position: relative;
    background: #000;
    height: 100%;
    min-height: 300px;
}
.modal-main-img {
    width: 100%; height: 100%;
    background-size: cover; background-position: center;
}
.modal-badge {
    position: absolute;
    
    /* CAMBIO DE POSICIÓN: De 'bottom/left' a 'top/right' */
    top: 25px;
    right: -1px; /* El -1px hace que se pegue al borde y "abrace" la esquina */
    
    /* Estilo Premium */
    background: var(--color-gold);
    color: #000;
    
    padding: 8px 18px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 1px;
    
    /* Borde redondeado solo a la izquierda para que se fusione con el borde del modal */
    border-radius: 15px 0 0 15px;
    
    /* Sombra sutil para darle profundidad */
    box-shadow: -5px 5px 15px rgba(0,0,0,0.3);
}

/* Columna Derecha (Scrollable) */
.modal-info {
    padding: 40px;
    overflow-y: auto; /* Si la lista es larga, scrollea */
    max-height: 80vh;
}

.modal-info h2 {
    font-family: 'Montserrat', sans-serif;
    color: #fff; font-size: 1.8rem; margin-bottom: 10px;
    border-bottom: 2px solid var(--color-gold);
    display: inline-block; padding-bottom: 5px;
}

.modal-description { color: #ccc; font-size: 0.95rem; line-height: 1.6; margin-bottom: 20px; }

.modal-divider { height: 1px; background: rgba(255,255,255,0.1); margin: 20px 0; }

.modal-info h4 { color: var(--color-gold); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 15px; font-size: 0.9rem; }

/* Lista de Habitaciones (Estilo Checklist Premium) */
/* --- Lista de Características (ESTILO GRID 2 COLUMNAS) --- */
.modal-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    
    /* Dividir en 2 columnas */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 25px; /* Espacio vertical y horizontal */
}

.modal-list li {
    position: relative;
    padding-left: 22px; /* Espacio para el icono */
    display: flex;
    flex-direction: column; /* Título encima del texto */
}

.modal-list li::before {
    content: '•';
    color: var(--color-gold);
    position: absolute;
    left: 0;
    top: 5px; /* Alineación vertical */
    font-size: 1.5rem;
    line-height: 0.5; /* Ajuste fino */
}

.modal-list li strong {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.modal-list li span {
    font-size: 0.85rem;
    color: #99aab5; /* Gris más legible */
}


/* --- ESTILOS FOOTER DEL MODAL (BOTONES MEJORADOS) --- */
.modal-footer-actions {
    display: flex;
    justify-content: flex-end; /* Alineamos botones a la derecha */
    align-items: center;
    gap: 15px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Botón "Ver más" (Ahora estilo Ghost/Borde Fino) */
.btn-text-gold {
    background: transparent;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-text-gold:hover {
    background: var(--color-gold);
    color: #000;
}

/* El botón "Reservar" ya está estilizado */
.modal-footer-actions .btn-gold-solid {
    min-width: 150px;
    text-align: center;
}

/* Responsive para la lista y botones */
@media (max-width: 900px) {
    .modal-list {
        grid-template-columns: 1fr; /* Una columna en pantallas chicas */
        gap: 15px;
    }
}

@media (max-width: 500px) {
    .modal-footer-actions {
        flex-direction: column;
        align-items: stretch; /* Ocupan todo el ancho */
    }
}


/* --- CORRECCIÓN VISIBILIDAD: SECCIÓN HABITACIONES --- */

/* 1. El pequeño subtítulo ("Tu Refugio...") */
.rooms-section .sub-title {
    color: var(--color-gold); /* Dorado para que brille */
    font-weight: 600;
    opacity: 1;
    letter-spacing: 2px;
}

/* 2. Título Principal ("Un Descanso...") */
.rooms-section .section-title-main {
    /* Mantenemos blanco para máximo contraste, pero ajustamos color de fondo */
    color: #ffffff !important;
    text-shadow: 0 2px 15px rgba(0,0,0,0.5);
}

/* 3. Palabra Destacada ("Aventura") */
/* El `!important` fuerza el cambio sobre el estilo inline del HTML */
.rooms-section .section-title-main span {
    color: var(--color-gold) !important; /* Dorado es la mejor opción aquí */
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.4); /* Resplandor */
}

/* 4. Descripción (Texto de abajo) */
.rooms-section .section-desc {
    color: #b0c4de; /* Un gris azulado muy claro */
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* --- ESTILOS FOOTER DEL MODAL (NUEVOS BOTONES) --- */
.modal-footer-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Botón "Ver más" (Texto dorado) */
.btn-text-gold {
    color: var(--color-gold);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.2s;
}
.btn-text-gold:hover {
    color: #fff;
}

/* El botón "Reservar" ya está estilizado por la clase .btn-gold-solid, 
   pero le damos un ancho mínimo para que no se vea chico. */
.modal-footer-actions .btn-gold-solid {
    min-width: 150px;
    text-align: center;
}

/* Responsive para los botones del Modal */
@media (max-width: 500px) {
    .modal-footer-actions {
        flex-direction: column-reverse; /* Un botón encima del otro */
        gap: 15px;
        align-items: stretch; /* Ocupan todo el ancho */
    }
}

/* --- ESTILOS GALERÍA DEL MODAL --- */
.modal-gallery {
    position: relative;
    background: #000;
    height: 100%;
    min-height: 300px;
    display: flex;
    flex-direction: column; /* Apilar foto principal y miniaturas */
}

.modal-main-img {
    flex-grow: 1; /* Ocupa todo el espacio disponible */
    background-size: cover;
    background-position: center;
    transition: background-image 0.4s ease; /* Transición suave al cambiar de foto */
}

/* Contenedor de miniaturas */
.modal-thumbnails {
    display: flex;
    gap: 8px;
    padding: 10px;
    background: rgba(0,0,0,0.3);
    flex-shrink: 0; /* Evita que se encoja */
    overflow-x: auto; /* Scroll si hay muchas fotos */
}

/* Miniatura individual */
.modal-thumb {
    width: 60px;
    height: 50px;
    border-radius: 6px;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.6;
    transition: all 0.3s;
    flex-shrink: 0;
}

.modal-thumb:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Miniatura activa (la que se está viendo) */
.modal-thumb.active {
    border-color: var(--color-gold);
    opacity: 1;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Ajuste responsive de la galería */
@media (max-width: 900px) {
    .modal-gallery {
        height: 300px; /* Altura fija en móvil */
    }
}



/* --- SECCIÓN SKY BAR (DISEÑO REFERENCIA) --- */
.sky-bar-section {
    padding: 100px 0;
    background-color: #0b0e14; /* Azul oscuro profundo */
    color: #fff;
    overflow: hidden;
    position: relative;
}

.container-fluid-sky {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.sky-bar-grid {
    display: grid;
    grid-template-columns: 40% 1fr; /* Texto izquierda, Composición grande derecha */
    align-items: center;
    gap: 4rem;
}



/* --- COLUMNA IZQUIERDA (DISEÑO BOUTIQUE ELEGANTE) --- */
.sky-bar-info {
    position: relative;
    z-index: 5;
    padding-right: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* 1. Botón Superior Estilizado */
.badge-pill {
    display: inline-flex;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
    padding: 10px 24px;
    border-radius: 50px;
    margin-bottom: 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}
.badge-pill:hover {
    background: var(--color-gold);
    color: #000;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

/* 2. Título de Alto Impacto */
.sky-bar-title {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1;
}

.title-small {
    display: block;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.title-large {
    display: block;
    font-size: 4rem; /* Mucho más grande e imponente */
    font-weight: 800; /* Negrita fuerte */
    letter-spacing: -1px;
    color: #fff;
    text-shadow: 0 5px 30px rgba(0,0,0,0.5); /* Sombra para despegar del fondo */
    margin-bottom: 5px;
}

.title-location {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 8px;
    text-transform: uppercase;
}

/* 3. Descripción */
.sky-bar-desc {
    color: #cbd5e0; /* Gris muy claro */
    font-size: 1.05rem;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 3rem;
    max-width: 90%;
    padding-left: 20px;
    border-left: 1px solid var(--color-gold); /* Línea elegante a la izquierda */
}

/* 4. Grid de Iconos Refinado */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease;
}
.feature-item:hover { transform: translateX(5px); }

/* Icono SVG dentro de círculo fino */
.feat-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    
    /* Borde dorado fino, fondo transparente */
    border: 1px solid rgba(212, 175, 55, 0.4);
    background: transparent;
    
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

/* El SVG */
.feat-icon svg {
    width: 20px;
    height: 20px;
}

/* Efecto Hover en Icono */
.feature-item:hover .feat-icon {
    background: var(--color-gold);
    color: #000; /* El icono se vuelve negro */
    border-color: var(--color-gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.feat-text { display: flex; flex-direction: column; }

.feat-text strong {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.feat-text span {
    color: #94a3b8; /* Gris azulado */
    font-size: 0.75rem;
    font-weight: 400;
}

/* Responsive */
@media (max-width: 992px) {
    .sky-bar-info { padding-right: 0; text-align: center; margin-bottom: 50px; }
    .sky-bar-desc { border-left: none; padding-left: 0; margin: 0 auto 3rem auto; }
    .title-large { font-size: 3rem; }
    .features-grid { text-align: left; max-width: 400px; margin: 0 auto; }
}


/* --- COLUMNA DERECHA (COMPOSICIÓN DE CAPAS) --- */
.sky-bar-composition {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 600px;
}

.composition-wrapper {
    position: relative;
    width: 600px;
    height: 500px;
}

/* FOTOS DE FONDO */
.comp-img {
    position: absolute;
    background-size: cover;
    background-position: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transition: transform 0.5s ease;
}

/* 1. Círculo (Arriba) */
.circle-img {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    top: -20px;
    left: 20px;
    z-index: 1;
}

/* 2. Rectángulo (Abajo Derecha) */
.rect-img {
    width: 350px;
    height: 300px;
    bottom: 0;
    right: 0;
    border-radius: 20px;
    z-index: 1; /* Mismo nivel que círculo, pero posicionado diferente */
}

/* 3. TARJETA GLASS CON LOGO (FRENTE) */
.glass-logo-card {
    position: absolute;
    width: 300px;
    height: 420px;
    
    /* Centrado absoluto respecto al wrapper */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    z-index: 10; /* ENCIMA DE TODO */
    
    /* Efecto Vidrio Premium */
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.glass-logo-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Vuelve el logo blanco */
    opacity: 0.9;
}

/* Animación Hover Sutil */
.sky-bar-section:hover .circle-img {
    transform: translateY(-10px);
}
.sky-bar-section:hover .rect-img {
    transform: translateY(10px);
}
.sky-bar-section:hover .glass-logo-card {
    transform: translate(-50%, -50%) scale(1.02);
    border-color: rgba(212, 175, 55, 0.3); /* Borde dorado sutil al hover */
}


/* --- Responsive --- */
@media (max-width: 1200px) {
    .composition-wrapper { width: 100%; max-width: 500px; }
    .circle-img { width: 300px; height: 300px; }
    .rect-img { width: 280px; height: 250px; }
    .glass-logo-card { width: 220px; height: 320px; }
}

@media (max-width: 992px) {
    .sky-bar-grid { grid-template-columns: 1fr; gap: 4rem; }
    .sky-bar-info { text-align: center; }
    .sub-title-wrapper { justify-content: center; }
    .sky-bar-features li { justify-content: center; }
    
    .sky-bar-composition { height: 500px; }
    .composition-wrapper { height: 450px; }
    .circle-img { left: 50%; transform: translateX(-50%); top: -40px; }
    .rect-img { right: 50%; transform: translateX(50%); bottom: -20px; }
}


/* --- BOTÓN LINEAL DORADO (Para secciones oscuras) --- */
.btn-gold-outline {
    display: inline-block;
    padding: 12px 35px;
    
    /* Borde dorado fino */
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    background: transparent;
    
    border-radius: 50px; /* Redondo */
    
    /* Tipografía */
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Efecto Hover (Relleno y Brillo) */
.btn-gold-outline:hover {
    background: var(--color-gold);
    color: #0b0e14; /* Texto oscuro al rellenarse */
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.4); /* Resplandor */
    transform: translateY(-3px); /* Se eleva */
}


/* --- SECCIÓN NOSOTROS Y SERVICIOS --- */
.about-services-section {
    padding: 100px 0;
    background-color: #151922; /* Un gris/azul muy oscuro, diferente al negro puro */
    color: #fff;
    position: relative;
}

/* 1. LAYOUT NOSOTROS (Grid) */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

/* Texto */
.section-label {
    display: block;
    color: var(--color-gold); /* Dorado fuerte */
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 700;
}


/* 4. Firma ("Desde 1970") */
.about-signature {
    color: var(--color-gold);
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

/* Línea divisoria al lado de la firma */
.signature-line {
    background: rgba(255, 255, 255, 0.2); /* Línea sutil */
}

/* 1. Título Principal (El problema principal) */
.about-title {
    /* Cambiamos de verde oscuro a BLANCO para que se lea */
    color: #ffffff; 
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 15px rgba(0,0,0,0.5); /* Sombra para resaltar */
}

/* Aseguramos que la palabra "Amazonas" siga dorada */
.about-title .text-gold { 
    color: var(--color-gold); 
    font-style: italic;
}

/* 2. Párrafos de texto (Hacerlos más claros) */
.about-desc {
    /* Usamos un gris muy claro (casi blanco) para lectura cómoda */
    color: #e2e8f0; 
    font-size: 1.05rem;
    line-height: 1.8; /* Más espacio entre líneas para elegancia */
    margin-bottom: 1.5rem;
    font-weight: 400;
}
.signature-line { flex-grow: 1; height: 1px; background: rgba(255,255,255,0.1); max-width: 100px; }


/* Imagen Arquitectura */
.about-image {
    position: relative;
}

.image-frame {
    border-radius: 20px 0 20px 0; /* Bordes asimétricos */
    overflow: hidden;
    position: relative;
    box-shadow: 20px 20px 0px rgba(212, 175, 55, 0.1); /* Sombra sólida decorativa */
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}
.image-frame:hover img { transform: scale(1.05); }

/* Tarjeta Flotante (+50 años) */
.floating-stat {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--color-gold);
    color: #000;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    text-align: center;
}
.floating-stat strong { display: block; font-size: 1.8rem; line-height: 1; font-weight: 800; }
.floating-stat span { font-size: 0.7rem; text-transform: uppercase; line-height: 1.2; font-weight: 600; }


/* 2. GRID DE SERVICIOS */
.section-header-center { 
    text-align: center; 
    margin-bottom: 4rem; 
    position: relative;
}

.section-header-center .sub-title {
    color: var(--color-gold);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
}

.section-header-center h3 { 
    font-family: 'Montserrat', sans-serif; 
    font-size: 2.5rem; 
    color: #fff; 
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Línea decorativa debajo del título */
.header-line {
    width: 60px;
    height: 3px;
    background: var(--color-gold);
    margin: 0 auto;
    border-radius: 2px;
}

/* Grid */
.premium-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* Tarjeta de Servicio (Rediseñada) */
.service-card {
    /* Fondo con degradado sutil */
    background: linear-gradient(145deg, #1a1f2c, #13161f);
    
    /* Borde muy fino y elegante */
    border: 1px solid rgba(255, 255, 255, 0.03);
    
    padding: 35px 30px;
    border-radius: 16px;
    display: flex;
    flex-direction: column; /* Icono arriba, texto abajo */
    align-items: flex-start;
    gap: 20px;
    
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* EFECTO HOVER SORPRESA */
.service-card:hover {
    transform: translateY(-10px); /* Sube más */
    
    /* El borde inferior se ilumina en dorado */
    border-bottom: 3px solid var(--color-gold);
    
    /* Sombra con resplandor dorado */
    box-shadow: 0 15px 40px rgba(0,0,0,0.4), 0 0 20px rgba(212, 175, 55, 0.1);
    
    /* Fondo ligeramente más claro */
    background: linear-gradient(145deg, #202636, #161a24);
}

/* Icono (Libre, sin caja, grande y dorado) */
.serv-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: var(--color-gold);
    transition: transform 0.4s ease;
}

/* Al hacer hover, el icono se mueve un poco */
.service-card:hover .serv-icon {
    transform: scale(1.1) translateX(5px);
}

.serv-icon svg {
    width: 36px; /* Icono más grande y visible */
    height: 36px;
}

/* Textos */
.serv-info h4 {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
}

.serv-info p {
    color: #a0aec0; /* Gris elegante */
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
    transition: color 0.3s;
}

/* Al hover, el texto se aclara */
.service-card:hover .serv-info p {
    color: #e2e8f0;
}

/* Responsive */
@media (max-width: 768px) {
    .premium-services-grid {
        grid-template-columns: 1fr; /* Una columna en móvil */
        gap: 20px;
    }
    .service-card {
        flex-direction: row; /* En móvil, icono al lado del texto para ahorrar espacio */
        align-items: center;
        padding: 25px;
    }
    .service-card:hover { transform: translateY(-5px); } /* Menos movimiento en móvil */
}

/* --- SECCIÓN CTA FINAL (PREMIUM) --- */
.final-cta-section {
    position: relative;
    padding: 120px 0;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

/* Fondo Parallax (Imagen Fija) */
.cta-bg-fixed {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Imagen oscura y misteriosa de la selva */
    background-image: url('https://images.unsplash.com/photo-1440557653017-d39f46ee3680?q=80&w=1920');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Efecto Parallax CSS */
    z-index: 1;
}

/* Overlay Gradiente (Vignette) */
.cta-overlay-gradient {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Oscuro en los bordes, un poco más claro en el centro */
    background: radial-gradient(circle, rgba(11, 14, 20, 0.7) 0%, rgba(5, 7, 10, 0.95) 100%);
    z-index: 2;
}

/* Contenido */
.cta-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Etiqueta Superior */
.cta-top-label {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
}
.cta-top-label .gold-line {
    width: 40px;
    height: 2px;
    background-color: var(--color-gold);
}
.cta-top-label .label-text {
    color: var(--color-gold);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Título */
.cta-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
}
.text-italic-gold {
    font-family: serif; /* Fuente Serif para contraste elegante */
    font-style: italic;
    color: #fff; /* O var(--color-gold) si prefieres */
    font-weight: 400;
}

/* Descripción */
.cta-desc {
    color: #cbd5e0;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 600px;
}

/* --- BOTONES DE ACCIÓN --- */
.cta-buttons-wrapper {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Para móvil */
}

.btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 35px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 200px;
}

.btn-action svg {
    margin-bottom: 2px; /* Ajuste visual */
}

/* Botón 1: Dorado Sólido */
.btn-action.primary {
    background: linear-gradient(135deg, #d4af37, #bfa15f);
    color: #0d1116;
    border: 1px solid transparent;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}
.btn-action.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
    background: #fff; /* Cambio a blanco al hover */
}

/* Botón 2: Outline (Transparente) */
.btn-action.secondary {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
}
.btn-action.secondary:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
}

/* Responsive */
/* --- CORRECCIÓN RESPONSIVE HERO (MÓVIL) --- */
@media (max-width: 768px) {
    
    /* 1. Evitar desbordamiento horizontal */
    body, html {
        overflow-x: hidden; /* Corta cualquier cosa que se salga */
        width: 100%;
    }

    /* 2. Ajustar el contenedor del Hero */
    .hero-content-wrapper {
        width: 100%;
        max-width: 100%;
        padding: 0 20px; /* Margen seguro a los lados */
        box-sizing: border-box;
        
        /* Centrado absoluto */
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        
        /* Ajuste de altura para que no choque con el header */
        padding-top: 120px; 
        padding-bottom: 50px;
    }

    /* 3. Título: Reducir tamaño para que no empuje */
    .hero-title {
        font-size: 2.2rem; /* Tamaño seguro para móvil */
        line-height: 1.2;
        width: 100%;
        white-space: normal; /* Permitir que baje de línea si es largo */
        word-wrap: break-word;
    }
    
    /* 4. Subtítulo */
    .hero-subtitle {
        font-size: 1rem;
        max-width: 90%;
        margin: 0 auto 20px auto;
    }

    /* 5. Botón Badge (Ver Más) */
    .hero-badge-container {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .premium-badge {
        width: auto;
        max-width: 90%; /* Que no toque los bordes */
        padding: 10px 20px;
    }
}