.img-principal{
    width: 100%;
    height: 600px;
    background-size: cover;
    background-position: center;
    display: grid;
    justify-content: center;
    align-items: center;
    background-attachment: fixed;
}

.titulo-img{
    grid-column: 1/2;
    height: 300px;
    padding-top: 150px;
    
    display: flex;
    flex-direction: column;
    
}
.titulo-img .title{
    order: 1;
    text-align: center;
    margin: 0px 45px 10px;
    
    font-family: 'Baloo', sans-serif;
    color: #ffffff;
    font-size: 24px;
    max-width: 393px;
    align-self: center;
    color: #f3ebeb;
    

    background-image: linear-gradient(#D9B40F, gold);
    background-repeat: no-repeat;
    background-size: 110% 2px;
    background-position: 0%;
    transition: background-size 0.7s, background-position 0.5s ease-in-out;

}
.titulo-img .title:hover {
    background-size: 100% 100%;
    background-position: 0% 100%;
    transition: background-position 0.7s, background-size 0.5s ease-in-out;
    color: #000000 !important;
}


.titulo-img .texto{
    display: none;
    order: 2;
    text-align: center;
    margin-bottom: 10px;
    align-self: center;
    font-family: 'inder', sans-serif;
    color: #ffffff;
    font-size: 18px;
    }


.btn-img{
    grid-column: 1/2;
    order: 2;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;

}
.btn-img .btn {
    background-color: #FAFA00;
    margin-top: 10px;
    font-family: 'Inter', sans-serif;
    color: #000000;
    font-size: 12px;
    font-weight: 800;
    width: 106px;
    height: 40px;
    border-radius: 15px;
    text-align: center;
    border-radius: 15px;
    text-align: center;

}
@media (max-width:468px) {
    .titulo-img{
        padding-top: 90px;
    }
    .btn-img{
        height: auto;
        align-self: self-start;
    }
}
.bi-arrow-down-circle{
    color: #ffffff;
    font-size: 38px;

    }