/* FONT GERAL */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Configurações Gerais */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
    background-color: #12141D;
}

button:hover {
    cursor: pointer;
}

/* HERO SECTION */

#header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: fixed;
    width: 100%;
    padding: 30px 0px;
    transition: background-color 1s ease;
    /* align-items: center; */
    /* top: 0; */
    /* border-bottom: 2px solid #FFFFFF; */
}

.menu {
    display: flex;
    flex-direction: row;
    width: 70%;
    justify-content: right;
    align-items: center;
    gap: 80px;
    background-color: transparent;
    /* align-items: center; */
}

.title {
    display: flex;
    width: 30%;
    justify-content: center;
    align-items: center;
}

a {
    text-decoration: none;
    color: #1B1622;
}

main {
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: center;
    gap: 5vh;
    width: 100%;
    min-height: 80vh;
    background: url("./imgs/header/mainImage.png") no-repeat center bottom/cover;
    border-bottom-right-radius: 5px;
    padding-left: 220px;
}

.text-header {
    display: flex;
    flex-direction: column;
    width: 60%;
    gap: 50px;
}

#text-header-pc {
    display: flex;
}

#text-header-mobile {
    display: none;
}

.text-header h1 {
    font-size: 62px;
    font-weight: bold;
    line-height: 100%;
}

.text-header p {
    font-size: 24px;
    line-height: 160%;
}

.botoes-header {
    display: flex;
    flex-direction: row;
    width: 60%;
    gap: 2%;
}

.quero-participar {
    color: #FFFFFF;
    background-color: #12141D;
    border: none;
    padding: 20px;
    border-radius: 35px;
    font-family: "Poppins", sans-serif;
    font-weight: bold;
    font-size: 18px;
}

.saiba-mais {
    color: #12141D;
    background: none;
    padding: 20px;
    border-radius: 35px;
    font-family: "Poppins", sans-serif;
    font-weight: bold;
    font-size: 18px;
}

/* SOBRE */

.sobre {
    /* background-color: #7e4842; */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    padding: 120px 200px;
    color: white;
    font-size: 24px;
}

.texto-sobre {
    display: flex;
    width: 100%;
    flex-direction: column;
    text-align: left;
    gap: 50px;
}

.sobre h1 {
    letter-spacing: 2px;
    font-weight: 800;
}

.sobre p {
    width: 75%;
    font-size: 20px;
    font-weight: 200;
    line-height: 200%;
}

/* Galeria */

.galeria {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    width: 100%;
    padding: 120px 200px;
    color: white;
    font-size: 24px;
    gap: 50px;
}

.carrossel {
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.imagem-galeria {
    width: 22%;
    /* box-shadow: 2px 2px 15px #ffffff; */
}

.galeria h1 {
    width: 100%;
    text-align: left;
    letter-spacing: 2px;
    font-weight: 800;
}

.veja-mais{
    display: flex;
    color: #12141D;
    background-color: #FFFFFF;
    border: none;
    padding: 20px 50px;
    border-radius: 35px;
    font-family: "Poppins", sans-serif;
    font-weight: bold;
    font-size: 18px;
}

/* Perguntas Frequentes */

.perguntas {
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: center;
    width: 95%;
    gap: 50px;
    padding: 120px 150px;
    background-color: #ffffff;
    border-radius: 10px;
}

.perguntas h1 {
    font-size: 48px;
    font-weight: 800;
}

.perguntas-respostas {
    display: flex;
    flex-direction: column;
    width: 100%;
    font-weight: 600;
    letter-spacing: 1px;
    /* gap: 15px; */
}

.pergunta-resposta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.up {
    display: flex;
    flex: row;
    justify-content: space-between;
    width: 100%;
    border-bottom: 1px solid #12141D;
}

.pergunta {
    padding: 12px 0px;
    cursor: pointer;
}

.arrow {
    cursor: pointer;
    transition: transform 0.3s ease 0.1s;
}

.arrow.ativo {
    transform: rotate(-180deg);
}

.resposta {
    /* display: none; */
    color: #000000;
    font-weight: 300;
    padding: 12px;
    width: 100%;
    line-height: 30px;
    background-color: #ECECEC;
    border-radius: 5px;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 1s ease, opacity 0.5s ease;
}

.resposta.ativo {
    opacity: 1;
    max-height: 200px;
    transition: max-height 1s ease, opacity 1.5s ease;
}

/* Depoimentos e Localização */

.localizacao, .depoimentos {
    padding: 100px 0px;
    display: flex;
    flex-direction: column;
    gap: 50px;
    width: 100%;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.text-local, .text-depoimentos {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.text-local h1, .text-depoimentos h1 {
    font-weight: 800;
    font-size: 48px;
    padding-top: 20px;
}

.text-local p, .text-depoimentos p {
    font-weight: 200;
    letter-spacing: 2px;
}

/* Depoimentos */

.depoimentos-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    padding: 0px 200px;
}

.individual {
    display: flex;
    flex-direction: column;
    min-width: 300px;
    max-width: 500px;
    min-height: 500px;
    padding: 20px;
    border-radius: 5px;
    color: #000000;
}

.individual-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: left;
    gap: 10px;
    padding: 20px 20px 10px 20px;
    background-color: #ffffff;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.individual-header p {
    font-weight: bold;
    letter-spacing: 1px;
}

.text-individual {
    padding: 10px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: justify;
    line-height: 25px;
    background-color: #ffffff;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

/* Contribua */

.contribua {
    padding: 75px 0px;
    display: flex;
    width: 95%;
    color: #000000;
    background-color: #ffffff;
    border-radius: 10px;
}

.contribua-container {
    display: flex;
    flex-direction: row;
    padding: 0px 200px;
    width: 100%;
    gap: 10%;
}

.text-contribua {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15%;
}

.up-contribua {
    display: flex;
    flex-direction: column;
    gap: 40px;
    line-height: 35px;
}

.up-contribua h1 {
    font-size: 48px;
    font-weight: 800;
}

.down-contribua {
    display: flex; /* LEMBRAR DE VER COM ELISA */
    flex-direction: column;
    width: 100%;
    align-self: flex-start;
    gap: 50px;
}

.title-contribua {
    display: flex;
    flex-direction: row;
    gap: 10px;
    font-weight: bold;
    font-size: 18px;
}

.pay {
    display: flex;
    width: 80%;
    gap: 70px;
    font-size: 16px;
}

.pay-text {
    display: flex;
    flex-direction: column;
    gap: 50px;
    width: 100%;
    padding-right: 70px;
    border-right: solid 1px rgba(0, 0, 0, 0.1);
}

.pay-pix {
    display: flex;
    width: 100%;
}

.pay-button {
    background-color: #12141D;
    color: #ffffff;
    font-family: 'Poppins', 'Sans-serif';
    font-weight: bold;
    width: 70%;
    padding: 15px;
    border-radius: 35px;
}

.img-contribua {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 50px 0px;
}

.linha1 {
    /* display: flex;
    flex-direction: row; */
    align-self: flex-end;
}

/* Localização */

.localizacao iframe{
    width: 85%;
    border-radius: 10px;
}

/* Diretores */

.conselheiros {
    display: flex;
    flex-direction: column;
    padding: 150px 0px;
    width: 70%;
    gap: 70px;
    color: #FFFFFF;
}

.casal {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    gap: 8%;
}

.texto-casal {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    max-width: 525px;
}

#texto-casal-mobile {
    display: none;
}

.texto-casal h1 {
    font-weight: 600;
    font-size: 36px;
    letter-spacing: 2px;
    line-height: 40px;
}

.texto-casal p {
    font-weight: 200;
    letter-spacing: 2px;
    line-height: 30px;
}

/* Diretoria */

.diretoria {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 45%;
    gap: 50px;
    padding: 20px 0px 100px 0px;
    color: #ffffff;
}

.diretoria h1 {
    font-weight: 600;
    font-size: 36px;
    letter-spacing: 2px;
    line-height: 40px;
}

.lideres {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.lider img {
    margin-bottom: 20px;
}

.lider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 15px;
}

.nome {
    font-weight: bold;
}

.area {
    font-weight: 200;
    font-style: italic;
}

/* Footer */

footer {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-bottom: 30px;
    gap: 20px;
    font-weight: 200;
    color: #ffffff;
}

/* Responsividade */

@media (max-width: 768px) {

    /* HEADER E MAIN */

    #header {
        display: none;
    }

    .title {
        width: 100%;
    }

    #main {
        padding: 0px;
        width: 100%;
        align-items: center;
        justify-content: center;
    }

    .text-header {
        width: 100%;
        align-items: center;
        justify-content: space-between;
        text-align: center;
        padding: 0px 20px;
    }

    #text-header-pc {
        display: none;
    }

    #text-header-mobile {
        display: flex;
    }

    .text-header h1 {
        font-size: 32px;
        text-align: center;
    }

    .text-header p {
        font-size: 16px;
        text-align: center;
    }

    .botoes-header {
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 10px;
    }

    .quero-participar, .saiba-mais {
        width: 100%;
        padding: 12px;
        font-size: 14px;
        border-radius: 100px;
    }

    /* SOBRE */
    
    .sobre {
        width: 100%;
        padding: 30px 0px;
        align-items: center;
        justify-content: center;
    }

    .texto-sobre {
        width: 100%;
        gap: 20px;
        padding: 0px 30px;
        text-align: justify;
    }

    .texto-sobre h1 {
        font-size: 32px;
    }

    .texto-sobre p {
        width: 100%;
        font-size: 14px;
    }

    /* GALERIA */

    .galeria {
        padding: 30px;
        gap: 20px;
    }

    .galeria h1 {
        font-size: 32px;
    }

    .veja-mais {
        padding: 12px;
        font-size: 14px;
    }

    .carrossel {
        width: 100%;
        gap: 20px;
    }

    .carrossel {
        flex-direction: column;
    }

    .imagem-galeria {
        width: 100%;
    }

    /* PERGUNTAS FREQUENTES */

    .perguntas {
        padding: 20px;
        gap: 20px;
    }

    .perguntas h1 {
        font-size: 32px;
    }

    .up {
        gap: 10px;
    }

    .pergunta, .resposta {
        font-size: 14px;
    }

    .resposta.ativo {
        max-height: 500px;
    }

    /* DEPOIMENTOS */

    .depoimentos {
        width: 100%;
        padding: 20px;
    }

    .text-depoimentos h1 {
        font-size: 32px;
    }

    .text-depoimentos p {
        font-size: 14px;
        text-align: center;
    }

    .depoimentos-container {
        padding: 0px;
        gap: 20px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .individual {
        padding: 0px;
        max-width: 100%;
        min-height: 0px;
        background-color: #ffffff;
    }

    .individual-header {
        background-color: rgba(0, 0, 0, 0.0);
    }

    .text-individual {
        line-height: 20px;
        background-color: rgba(0, 0, 0, 0.0);
    }

    /* CONTRIBUA */

    .contribua {
        width: 100%;
        padding: 0px;
        border-radius: 0px;
        /* background-color: rgba(0, 0, 0, 0.0); */
    }

    .contribua-container {
        padding: 50px 20px;
        flex-direction: column;
        /* border-radius: 5px; */
        /* background-color: #ffffff; */
    }

    .text-contribua {
        gap: 20px;
    }

    .up-contribua {
        gap: 30px;
        text-align: justify;
        line-height: 25px;
    }

    .up-contribua h1 {
        font-size: 32px;
    }

    .up-contribua p, .down-contribua p {
        font-size: 14px;
    }

    .down-contribua {
        gap: 20px;
        border-top: solid 1px rgba(0, 0, 0, 0.1);
        padding: 30px 0px;
    }

    .img-contribua {
        display: flex;
        flex-direction: column;
        padding: 0px;
    }

    .linha1 {
        display: none;
    }

    /* LOCALIZAÇÃO */

    .localizacao {
        padding: 20px;
    }

    .text-local {
        padding: 0px;
    }

    .text-local h1 {
        font-size: 32px;
    }

    .text-local p {
        font-size: 14px;
        text-align: center;
    }

    .localizacao iframe {
        width: 100%;
        height: 300px;
        padding: 0px;
        border-radius: 10px;
    }

    /* DIRETORES */

    .conselheiros {
        flex-direction: column;
        width: 100%;
        padding: 20px;
    }

    .casal {
        padding: 0px;
        gap: 20px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .texto-casal {
        width: 100%;
        padding: 0px;
        gap: 20px;
    }

    .texto-casal h1 {
        font-size: 32px;
        text-align: center;
    }

    .texto-casal p {
        font-size: 14px;
        text-align: justify;
    }

    #texto-casal-mobile {
        display: flex;
    }

    #texto-casal-pc {
        display: none;
    }

    .casal img {
        width: 100%;
        max-width: 300px;
        height: auto;
        border-radius: 10px;
    }

    /* DIRETORIA */

    .diretoria {
        padding: 20px 0px;
        width: 100%;
    }

    .diretoria h1 {
        text-align: center;
        font-size: 32px;
    }

    .lideres {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 20px;
    }

    .lider {
        width: 100%;
        padding: 0px;
    }

    /* FOOTER */

    footer {
        font-size: 14px;
    }
}