
/*INICIO FORMULARIO*/
.contato-box{
    display:flex;
    justify-content:center;
}


/*FIM ABA CONTATO*/
/*INICIO FICHA DE INSCRIÇÃO DO SITE ACCS*/

.texto-contato {
    margin: auto;
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
}


.icone-contato {
    display: flex;
    justify-content: left;
    width: 60%;
    height: auto;
}


/* ===== SEÇÃO CONTATO ===== */
.secao-contato {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 70px 10%;
    gap: 60px;
    flex-wrap: wrap;
}



/* ===== INFORMAÇÕES DA ACCS ===== */
.informacoes-contato {
    background-color: #c0c0c0;
    padding: 40px;
    border-radius: 5px;
    flex: 1;
    min-width: 320px;
    text-decoration: underline;
    text-decoration-color: #c0c0c0;
}


.informacoes-contato h2,
.informacoes-contato h3 {
    font-family: "Poppins", sans-serif;
    color: #121F28;
}



.informacoes-contato p {
    font-size: 18px;
    color: #000000;
    line-height: 1.6;
    text-decoration: underline;
    text-decoration-color: #00a69c;
}

*/
.banner-contato {
    display: flex;
    justify-content: flex-start; /* mantém o texto à esquerda */
    align-items: center;
    text-align: left;
    font-size: 30px;
    font-weight: bold;
    margin-top: 90px;
    height: 100%;
    padding-left: 60px;
}



/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    .secao-contato {
        flex-direction: column;
        text-align: center;
        align-items: center;
        justify-content: center;
    }



    .formulario, .informacoes-contato {
        width: 100%;
    }



    .secao-contato {
        padding: 60px 4%;
        gap: 60px;
        flex-wrap: wrap;
    }



    .secao-contato a{
        font-size: 14px;
    }


    .informacoes-contato {
        width: 100%;
        padding: 25px;
        box-sizing: border-box;
    }



*/
.container-contactus {
    display: flex;
    flex-direction: column;  /* imagem em cima, botão embaixo */
    align-items: center;     /* centraliza horizontal */
    justify-content: center;
    text-align: center;
    width: 100%;             /* deixa responsivo */
    height: auto;
    position: relative;
    display: inline-block;   /* Faz o container ter o tamanho da imagem */

}



.botaocontact {
        font-size: 20px;
        background-color: #136363;
        color: #ffffff;
        border: none;
        padding: 12px 24px;
        border-radius: 5px;
        cursor: pointer;
        transition: 0.5s;
        font-family: "Julius Sans One", sans-serif;
        font-weight: bold;
    }



.botaocontact:hover {
    background-color: #66cfcf;
}
}