@charset "UTF-8";

.banner_home {
    padding: 0;
}
  
.banner_home__grupo-conteudo {
    position: relative;
    top: 0;
    left: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70vh;
    padding: 0 6.4rem;
    overflow: hidden;
}

.banner_home__grupo-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: 1140px;
    padding: 0 1.6rem;
    margin: 0 auto;
    z-index: 100;
}
  
.banner_home__grupo-titulo {
    margin-bottom: 1.6rem;
    margin-right: 40%;
    color: var(--branco);
}
  
.banner_home__grupo-botao {
    display: inline-block;
    text-align: center;
    font-family: var(--fonte-principal);
    font-weight: 500;
    color: var(--branco);
    font-size: 1.6rem;
    line-height: 1;
    vertical-align: middle;
    padding: 1.2rem 2.4rem;
    border-radius: 10rem;
    background-color: var(--laranja-escuro);
    cursor: pointer;
    -webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}

.banner_home__grupo-botao i {
    margin-right: .8rem;
}
  
.banner_home__grupo-botao:hover {
    background-color: var(--laranja);
    color: var(--branco);
}

.banner_home__grupo-imagem {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
}

.banner_home__grupo-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 992px) {

    .banner_home__grupo-titulo {
        margin-right: 25%;
    }

}

@media screen and (max-width: 768px) {
    
    .banner_home__grupo-conteudo {
        align-items: flex-end;
        padding: 0;
    }
    
    .banner_home__grupo-card {
        padding: 0 3.2rem;
        margin-bottom: 7rem;
    }

}

@media screen and (max-width: 576px) {

    .banner_home__grupo-card {
        padding: 0 2.4rem 0 1.6rem;
        margin-bottom: 7rem;
    }

    .banner_home__grupo-titulo {
        margin-right: 0;
    }

}