/* --- HERO OVERLAY STYLE (Estilo Punta Cana) --- */

.hero-overlay-container {
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow: hidden;
    background-color: #000; /* Fondo negro por si la imagen tarda en cargar */
}

/* La imagen ocupa todo el ancho */
.hero-image-full {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover; /* Asegura que cubra el área sin deformarse */
    min-height: 400px; /* Altura mínima para móviles */
}

/* El contenedor del texto superpuesto */
.hero-caption-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 20px;
    /* GRADIENTE: Clave para que el texto blanco se lea sobre cualquier foto */
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0) 100%);
    color: #fff;
    text-align: left; /* O center, según prefieras */
    pointer-events: none; /* Permite hacer clic en la imagen si fuera necesario */
}

/* Caja interna para limitar el ancho del texto (opcional) */
.hero-content-box {
    max-width: 800px;
    margin: 0 auto; /* Centrado horizontalmente */
    pointer-events: auto;
}

/* Tipografía del Título */
.hero-title {
    font-family: 'Montserrat', sans-serif; /* O la fuente de tu sitio */
    font-weight: 700;
    font-size: 36px;
    line-height: 1.2;
    text-align:left;
    color: #ffffff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Tipografía de la Descripción */
.hero-description {
    font-size: 18px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    max-width: 600px; /* Evita que el texto sea demasiado ancho para leer */
}

/* AJUSTES PARA MÓVILES */
@media (max-width: 768px) {
    .hero-image-full {
        min-height: 300px; /* Un poco más bajo en móviles */
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-description {
        font-size: 15px;
        display: none; /* Opcional: Ocultar descripción en móvil si quieres que sea igual al ejemplo 'uk-visible-large' */
    }

    .hero-caption-overlay {
        padding: 20px;
        background: rgba(0,0,0,0.6); /* Fondo más sólido en móvil para legibilidad */
    }
}

/* --- ESTRUCTURA HERO & INTRO --- */
.vip-hero-section {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vip-intro-text {
    margin-bottom: 20px;
}

/* --- ICONOS Y CHIPS (Bullets) --- */
.hero-bullets {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.chip {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

    .chip i {
        margin-right: 8px;
        color: #007bff; /* Color primario */
    }

/* --- TARJETA PRINCIPAL (VIP CARD) --- */
.vip-card {
    background: #ffffff;
    border: 1px solid #e1e1e1;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    position: relative;
    text-align: center; /* Centra textos generales */
}

    .vip-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
    }

.eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #d9534f; /* Color de acento */
    margin-bottom: 15px;
    display: block;
}

/* --- PRECIOS --- */
.price-pill {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px 10px;
    margin: 20px 0;
    border: 1px solid #eeeeee;
}

.price-column-border {
    border-right: 1px solid #ddd;
}

.price-value {
    font-size: 1.4em;
    color: #333;
}

.price-value-green {
    font-size: 1.4em;
    color: #2ecc71;
}

.text-big {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #555;
}

/* --- LISTAS --- */
.divider-card {
    margin-top: 20px;
    margin-bottom: 20px;
    border-top: 1px solid #eee;
}

.list-container {
    text-align: center; /* Centra el bloque de la lista */
}

.list-check {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    display: inline-block; /* Hace que la lista se comporte como bloque centrado */
    text-align: left; /* Pero el texto de adentro se alinea a la izquierda */
}

    .list-check li {
        position: relative;
        padding-left: 30px;
        margin-bottom: 12px;
        color: #555;
        font-size: 15px;
        line-height: 1.5;
    }

        .list-check li i {
            position: absolute;
            left: 0;
            top: 4px;
            color: #2ecc71; /* Verde check */
        }

/* --- EXTRAS --- */
.upsell-alert {
    background-color: #e8f4fc;
    color: #2c3e50;
    padding: 15px;
    border-radius: 6px;
    font-size: 0.95em;
    text-align: center;
}

.btn-vip {
    display: block;
    width: 100%;
    padding: 18px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s;
    border: none;
}

    .btn-vip:hover, .btn-vip:focus {
        background-color: #0056b3;
        color: #ffffff;
        text-decoration: none;
    }

.image-shadow-rounded {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* --- MOBILE TWEAKS --- */
@media (max-width: 767px) {
    .vip-card {
        padding: 25px 15px;
    }

    .price-column-border {
        border-right: none;
        border-bottom: 1px solid #ddd;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
}

