

/* ── Hero content ── */
.hero-content {
    position: relative;
    z-index: 2;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    text-align: center;
}

/* Video */
.video-brightness{
    filter: brightness(80%);
}

/* ── Texto principal ── */
.hero-titulo {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
    text-align: center;
}

.hero-texto{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-subtitulo {
    text-align: center;
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 1px 6px rgba(0,0,0,0.4);
    margin-bottom: 3rem;
    max-width: 560px;
}

/* ── Tarjetas CTA ── */
.hero-ctas {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3rem;
    width: 100%;
    max-width: 760px;
}

.hero-cta-card {
    flex: 1 1 300px;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.4rem 1.75rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    border-radius: 10px;
    text-decoration: none;
    color: #fff;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: background 0.2s, border-color 0.2s;
    text-align: left;
}

.hero-cta-card:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
    text-decoration: none;
}

.hero-cta-card__icono {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.hero-cta-card__titulo {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.2rem;
}

.hero-cta-card__desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.4;
}

.hero-cta-card__flecha {
    margin-left: auto;
    font-size: 0.9rem;
    opacity: 0.6;
}

/* ── Badge Booking ── */
.hero-booking__img {
    height: 180px;
    width: auto;
    box-shadow: 2px 2px 15px 0 rgba(0,0,0,0.65), 20px 20px 25px 0 rgba(0,0,0,0.2);
    transition: transform 0.2s;
}

.hero-booking__img:hover {
    transform: scale(1.04);
}

/* Título hero — tamaño intermedio */
.hero-titulo {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
}

/* Botones CTA hero */
.hero-boton {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: opacity 0.2s;
    color: #fff !important;
}

.hero-boton:hover {
    opacity: 0.88;
    text-decoration: none;
}

.hero-boton-booking {
    background-color: var(--primary);
}

.hero-boton-whatsapp {
    background-color: #25D366;
    color: #fff;
}

/* ── Responsive ── */
@media (max-width: 576px) {
    .hero-cta-card {
        flex: 1 1 100%;
    }
    .hero-booking__img {
        height: 85px;
    }
}
