/* --- HEADER DE LA VISTA --- */
.header-vistas {
    /* Padding de 200px para librar el Navbar y verse masivo */
    padding: 200px 20px 140px;
    background: linear-gradient(180deg, var(--navy-dark) 0%, #112B4A 100%);
    position: relative;
    border-bottom: 2px solid var(--gold);
}

/* --- CARDS LUXURY --- */
.card-atraccion {
    background: white;
    border: none;
    border-radius: 0;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.card-atraccion:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* --- CARRUSEL DENTRO DE CARD --- */
.img-atr {
    height: 280px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.card-atraccion:hover .img-atr {
    transform: scale(1.05);
}

/* --- BADGES (Etiquetas) --- */
.badge-luxury {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 5;
    padding: 6px 15px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: white;
    background: var(--navy-dark);
}

.badge-luxury.snk { border-left: 3px solid #00d2ff; } /* Azul snorkel */
.badge-luxury.rlx { border-left: 3px solid var(--gold); } /* Oro relax */
.badge-luxury.avt { border-left: 3px solid #ff4b2b; } /* Naranja aventura */
.badge-luxury.res { border-left: 3px solid #6dd5ed; } /* Cyan restaurantes */

/* --- CONTROLES CARRUSEL --- */
.carousel-control-prev, .carousel-control-next {
    width: 40px;
    height: 40px;
    background: rgba(10, 25, 47, 0.5);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 10px;
    opacity: 0;
    transition: all 0.3s ease;
}

.card-atraccion:hover .carousel-control-prev,
.card-atraccion:hover .carousel-control-next {
    opacity: 1;
}

/* --- CUERPO DE LA TARJETA --- */
.card-atraccion-body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-atraccion-body h3 {
    font-size: 1.6rem;
    color: var(--navy-dark);
    margin-bottom: 15px;
}

.card-atraccion-body .description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.gold-line {
    border-top: 1px solid var(--gold);
    opacity: 0.3;
    margin: 20px 0;
}

.view-gallery {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--navy-dark);
    cursor: pointer;
}

/* --- ANIMACIÓN REVEAL --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}