.hero-flower{
    height:75vh;
    position:relative;
    overflow:hidden;
}

.hero-img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-overlay{
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
    background:linear-gradient(
        rgba(0,0,0,.50),
        rgba(0,0,0,.20)
    );
    color:white;
}

.hero-overlay h1{
    font-size:clamp(3rem,7vw,5rem);
    margin-bottom:1rem;
}

.hero-overlay p{
    font-size:1.1rem;
    max-width:650px;
    opacity:.95;
}


/* TARJETAS PASOS */

.glass-card{
    background:#fff;
    border-radius:18px;
    padding:2rem;
    box-shadow:
    0 10px 30px rgba(0,0,0,.06);

    height:100%;
}

.numero{
    font-size:2rem;
    opacity:.25;
    margin-bottom:1rem;
}


/* TARJETAS MODALIDADES */

.tipo-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;

    box-shadow:
    0 10px 30px rgba(0,0,0,.06);

    transition:
    transform .25s ease,
    box-shadow .25s ease;

    height:100%;
}

.tipo-card:hover{
    transform:translateY(-5px);

    box-shadow:
    0 18px 40px rgba(0,0,0,.10);
}


.tipo-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
}


.tipo-card h3{
    padding:
    1.2rem
    1.2rem
    .4rem;

    margin:0;

    font-size:1.5rem;
}


.tipo-card p{
    padding:
    0
    1.2rem
    1.4rem;

    color:#666;
    margin:0;
}


/* BLOQUE CORPORATIVO */

.corporativo{
    background:#111;
    color:white;

    border-radius:24px;

    padding:4rem;

    overflow:hidden;
}

.corporativo h2{
    margin-bottom:1rem;
}

.corporativo p{
    opacity:.9;
}


/* FAQ */

.accordion-button{
    font-weight:500;
}

.accordion-button:not(.collapsed){
    background:#f8f8f8;
    color:#000;
}


/* BOTONES */

.botonx{
    transition:.25s;
}

.botonx:hover{
    transform:translateY(-2px);
}


/* MOBILE */

@media(max-width:768px){

    .hero-flower{
        height:60vh;
    }

    .hero-overlay h1{
        font-size:2.4rem;
    }

    .hero-overlay p{
        font-size:1rem;
    }

    .corporativo{
        padding:2rem;
    }

    .tipo-card img{
        height:180px;
    }

    .glass-card{
        padding:1.5rem;
    }

}