/* GERAIS [INÍCIO] */
*{
    margin: 0px;
    padding: 0px;
}

body{
    color: #000;
    background-color: #442A19;
}

a{
    /*text-decoration: none;*/
    color: #FFF;
}
/* GERAIS [FIM] */

/* SEÇÃO DESTAQUE [início]*/
#secao-destaque{
    /*width: 100%;
    position: relative;
    margin: auto;
    flex-wrap: nowrap;
    align-items: center;*/
}

/*#texto_destaque{
    width: 480px;
    position: absolute;
    top: 20%;
    left: 7%;
    text-align: center;
}*/

#h1_secao-destaque{
    width: 480px;
    position: absolute;
    top: 20%;
    left: 7%;
    text-align: center;
    color: #000;
    text-align: center;
    font-family: "Afronik";
    font-size: 35px;
    font-style: normal;
    font-weight: 300;
    letter-spacing: 1.75px;
    /*font-size: clamp(0.5em, 1em + 1vw, 3em);*/
}

#p_secao-destaque{
    color: #000;
    text-align: center;
    font-family: "Open Sans";
    font-size: 26px;
    font-style: normal;
    font-weight: 200;
    letter-spacing: 1.1px;
    /*font-size: clamp(1em, 0.7em + 1vw, 1.8em);*/
}

#imagem_destaque{
    /*width: 100%;*/
    /*margin-top: 5px;*/
}
/* SEÇÃO DESTAQUE [fim] */

/* SEÇÃO SOBRE [início] */
#secao-sobre{  
    /*
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;*/
    /*gap: 200px;*/
}

/*#texto-e-linha{
    margin-bottom: 10vh;
}*/

/*.moldura{
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    gap: 2px;
}*/

.linha_colorida{
    width: 120px;
}

.bold{
    font-weight: bold;
}

#banner_informe{
    padding-top: 70px;
}

#h2_sobre{
    color: #FFF;
    text-align: center;
    font-family: "Afronik";
    font-size: 25px;
    font-style: normal;
    font-weight: 300;
    letter-spacing: 1.75px;
}

.p_sobre{
    color: #FFF;
    flex-shrink: 0;
    text-align: center;
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    letter-spacing: 0.9px;
}

#img_sobre{
    /*width: ;
    max-width: 1vw;*/
    /*height: 300px;*/
    background: rgb(223, 225, 235);
    border-radius: 50px;
    box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
}

.divisao_secoes{
    width: 100%;
}

/* SEÇÃO CARDS [início] */

#secao-cards{
    background-color: #DFD399;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-content:center;
    align-items: center;
}

.div_card-duplo{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.card {
    /*border-radius: 6px;
    border: 2px solid #442A19;*/
    cursor: pointer;
    background-color: #DFD399;
    border-color: #DFD399;
  }
  
  .card-image {
    /*height: 100px;*/
    /*margin: 0px;
    padding: 0px;*/
  }
  
  .card:hover {
    transform: scale(0.98);
  }
  
  
/* SEÇÃO CARDS [fim] */

.divisao_secoes_a-b{
    width: 100%;
}

/* -> Responsividade ->*/
@media(max-width: 575.98px){
    .p_sobre{
        font-size: 16px;
    }
    #secao-cards{
        display: flex;
        flex-direction: column;
    }
}

@media(min-width: 450px) and (max-width: 575.98px){
    .card-image{
        height: 221.547px;
    }
    .div_card-duplo{
        justify-content: center !important;
    }
}

@media(min-width: 576px) and (max-width: 767.98px){
    #h2_sobre{
        font-size: 26px;
    }
    .p_sobre{
        font-size: 17px;
    }
}

@media(min-width: 768px) and (max-width: 991.98px){
    #secao-cards, .div_card-duplo{
        gap: 2vw;
    }
    #h2_sobre{
        font-size: 27px;
    }
}

@media(min-width: 992px) and (max-width: 1199.98px){
    #secao-cards, .div_card-duplo{
        gap: 2vw;
    }
    #h2_sobre{
        font-size: 28px;
    }
}

@media(min-width: 1200px) and (max-width: 1399.98px){
    #secao-cards, .div_card-duplo{
        gap: 3vw;
    }
    #h2_sobre{
        font-size: 30px;
    }
}

@media(min-width: 992px) and (max-width: 1399.98px){
    #h2_sobre{
        font-size: 27px;
    }
    .p_sobre{
        font-size: 18px;
    }
}

@media(min-width: 1400px){
    #h2_sobre{
        font-size: 28px;
    }
    .p_sobre{
        font-size: 19px;
    }
    #secao-cards, .div_card-duplo{
        gap: 4vw;
    }
}