/*
===============================================================================================================
Geral
===============================================================================================================
*/
:root{
    --cor_primaria: #00d9f8;
    --cor_secundaria: #1da3b8;
    --Backgroud: #dfdfdf;
    --CP_darkmode: #213872;
    --CS_darkmode: #0e2555;
    --BKG_darkmode: #303030;

    --Border_radius: 45px;
    --box-shadow: 7px 7px 9px 0px rgba(0, 0, 0, 0.3);
    --tamanho_fonte: 19px;
    --borda: 0.9px #00d9f8 solid;
    --borda-dk: 0.9px #213872 solid;
}

.img-intro{
    width: 100%;
    margin-top: 0;
    max-height: 510px;
}

h2{
    font-size: 220%;
    margin-top: 6%;
}
/*
===============================================================================================================
Estilização do Sobre Nós
===============================================================================================================
*/
.sobre-nos{
    margin-top: 4%;
    display: flex;
    justify-content: space-between;
    padding-inline: 5%;
    align-items: flex-start;
}

.texto-intro-sobre{
    max-width: 65%;
    font-size: 110%;
}

/*
===============================================================================================================
Estilização dos nossos objetivos
===============================================================================================================
*/
.nossos-objetivos{
    display: flex;
    margin-top: 5%;
    padding-inline: 4%;
    justify-content: space-between;
    align-items: flex-start;
}
.texto-objetivo{
    max-width: 65%;
    font-size: 130%;
}

/*
===============================================================================================================
Estilização do fatos de nossa empresa
===============================================================================================================
*/
.fatos{
    margin-top: 5%;
}
.container-fatos{
    display: flex;
    justify-content: center;
    gap: 2%;
    margin-bottom: 2%;
}
.fato-card{
    width: 20%;
    background-color: var(--cor_secundaria);
    text-align: center;
    border-radius: 15px
}
.fato-card h3{
    font-size: 140%;
}
.fato-card p{
    max-width: 70%;
    font-size: 130%;
    display: block;
    margin: auto;
    margin-top: -12px;
    margin-bottom: 20px;
    font-weight: 450;
}

/*
===============================================================================================================
Nossas metas
===============================================================================================================
*/
.nossas-metas{
    margin-top: 8%;
}
.container-meta{
    display: flex;
    justify-content: center;
    gap: 4%;
}
.meta-card{
    width: 26%;
    border-radius: 15px;
    border: var(--borda);
}
.meta-card p{
    max-width: 80%;
    display: block;
    margin: auto;
    margin-bottom: 15px;
}

/*
===============================================================================================================
Nossa Equipe
===============================================================================================================
*/
.nossa-equipe{
    margin-top: 8%;
}
.container-equipe{
    display: flex;
    justify-content: center;
    gap: 5%;
    margin-bottom: 5%;
}
.membro img{
    width: 250px;
    height: 320px;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
}
.membro h4{
    font-size: 150%;
}
.membro p{
    max-width: 250px;
    font-size: 18px;
    text-align: center;
    margin-top: -20px;
}

/*
===============================================================================================================
Modo Noturno
===============================================================================================================
*/
body.darkmode .fato-card{
    background-color: var(--CP_darkmode);
}
body.darkmode .meta-card{
    border-color: var(--CP_darkmode);
}

/*
===============================================================================================================
Responsividade
===============================================================================================================
*/
@media(max-width:1024px){
    .sobre-nos{
        gap: 2%;
    }
    .nossos-objetivos{
        gap: 2%;
    }
}

@media(max-width:768px){
    .sobre-nos img{
        display: none;
    }
    .texto-intro-sobre{
        display: block;
        margin: auto;
        width: 90%;
        max-width: 90%;
    }
    .nossos-objetivos img{
        display: none;
    }
    .texto-objetivo{
        display: block;
        margin: auto;
        max-width: 90%;
    }
    .container-fatos{
        padding-inline: 1%;
    }
    .fato-card{
        width: 25%;
    }
    .meta-card{
        width: 34%;
    }
    .container-meta{
        padding-inline: 1%;
        gap: 2%;
    }
    .membro img{
        width: 200px;
    }
    .membro p{
        max-width: 200px;
    }
    #Claudia img{
        object-position: left;
    }
}

@media(max-width:480px){
    .sobre-nos img{
        display: none;
    }
    .texto-intro-sobre{
        max-width: 90%;
        display: block;
        margin: auto;
    }
    .nossos-objetivos img{
        display: none;
    }
    .texto-objetivo{
        max-width: 90%;
        display: block;
        margin: auto;
    }
    .container-fatos{
        flex-direction: column;
    }
    .fato-card{
        width: 70%;
        display: block;
        margin: auto;
        margin-bottom: 5%;
    }
    .container-meta{
        flex-direction: column;
    }
    .meta-card{
        width: 75%;
        display: block;
        margin: auto;
        margin-bottom: 5%;
    }
    .container-equipe{
        flex-direction: column;
    }
    .membro{
        width:70%;
        display: block;
        margin: auto;
    }
    .membro p{
        display: block;
        margin: auto;
        margin-bottom: 7%;
        margin-top: -20px;
    }
    .membro img{
        width: 240px;
        display: block;
        margin: auto;
    }
}

@media(max-width:320px){
    .sobre-nos h3, .nossos-objetivos h3{
        font-size: 25px;
    }
    .fato-card{
        width: 90%;
    }
    .meta-card{
        width: 94%;
    }
    .membro{
        margin-left: 41px;
        margin-bottom: 7%;
    }
}