* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Inter-VariableFont_opsz';
}

body {
    overflow-x: hidden;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

@font-face {
    font-family: 'Inter-VariableFont_opsz';
    src: url('../css/Inter/Inter-VariableFont_opsz.ttf');
}

/* INICIO CABECALHO */

.cabecalho {
    display: flex;
    background-color: #B1D3B9;
    height: 120px;
    align-items: center;

}

.logo {
    width: 20rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.menu a{
    font-size: 32px;
    font-weight: lighter;
    color: black;
    padding: 10px 10px 15px;
    text-decoration: none;
    padding: 0 0 0 5px;
}

.menu a:hover{
    color: white;
}

.menu .pipe {
    font-size: 32px;
    font-weight: lighter;
    color: black;
    padding: 0 10px;
}

.menu {
    padding: 2.5rem 2.5rem 2.5rem 0;
    
}

/* FIM DO CABECALHO */

/* INICIO DA BODY - SERVIÇOS Lucas*/

.verde-span {
    color: #287F14;
}

.titulo-principal {
    font-size: 50px;
}

.atuacao1, .atuacao2 {
    display: block;
    list-style-type: disc;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.atuacao1 li, .atuacao2 li{
    margin-bottom: 1.5rem;
    font-size: 24px;
}

.listas {
    display: flex;
    gap: 5rem;
    padding: 0 2.5rem;
}

.conteudo-principal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3rem 4.5rem;
    min-height: calc(100vh - 240px);
}

.conteudo-esquerda {
    flex: 1;
}

.conteudo-direita {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.titulo-secundario {
    font-size: 28px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.formulario {
    width: 100%;
    max-width: 550px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
}

.campo {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.campo input, .campo select, .campo textarea {
    width: 100%;
    padding: 0.6rem;
    font-size: 14px;
}

.campo-mensagem {
    grid-column: 1;
    grid-row: span 2;
}

.campo-mensagem textarea{
    resize: none;
    height: 100%;
}

.botoes {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.botoes button{
    width: 150px;
    padding: 12px;
    border-radius: 8px;
    border: 1px;
    transition: background 0.2s;
}

.botao-enviar {
    padding: 0.8rem 2rem;
    font-size: 16px;
    cursor: pointer;
    width: 130px;
    background-color: #388E3C;
    color: white;
}

.botao-enviar:hover{
    background-color: #2E7D32;
}

.botao-limpar {
    font-size: 16px;
    cursor: pointer;
    padding: 0.8rem 2rem;
    width: 130px;
}

.botao-limpar:hover {
    background-color: #dedfdd;
}

/* FIM DA BODY - SERVIÇOS Lucas

/* INICIO DA BODY - CONTATO Pamela */

.container-contato {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    gap: 50px;
    flex: 1;
}

.itens-esquerda {
    flex: 1;
}

.titulo-contato {
    display: flex;
    font-size: 40px;
    color: #111111;
    margin-bottom: 20px;
    justify-content: center;
    text-align: center;
}

.texto-contato {
    font-size: 21px;
    color: #333333;
    margin-bottom: 40px;
}

.dados-clinica {
    display: grid;
    grid-template-columns: 1fr 1fr; /* fr divide a grade em 50% da página */
    gap: 30px 20px;
}

.dados-contato {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.titulo-dados {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #D2E2D5;
    color: #111111;
    font-weight: bold;
    font-size: 18px;
    width: 130px;
    height: 32px;
    border-radius: 2px;
}

.dados-contato p {
    display: flex;
    font-size: 17px;
    color: #444444;
    text-align: center;
}

.itens-direita {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.formulario-contato {
    padding: 10px;
    width: 100%;
    max-width: 500px;
}

.dados-usuario {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 15px;
}

.dados-usuario label {
    font-size: 15px;
    font-weight: bold;
    color: #222222;
}

.dados-usuario input, .dados-usuario select, .dados-usuario textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    background-color: #ffffff;
    font-size: 14px;
    color: #333333;
}

.dados-usuario select {
    height: 45px;
    cursor: pointer;
}

.dados-usuario textarea {
    resize: none;
}

.container-botao {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
    gap: 15px;
}

.btn-enviar {
    background-color: #388E3C;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 15px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-enviar:hover {
    background-color: #2E7D32;
}

.btn-limpar {
    color: black;
    border: 1px;
    padding: 12px 30px;
    font-size: 15px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-limpar:hover {
    background-color: #dedfdd;
}


/* INICIO DO RODAPE */

.footer-servicos, .footer-contato {
    position: relative;
    bottom: 0;
    width: 100vw;
}

.rodape {
    display: flex;
    background-color: #B1D3B9;
    height: 120px;
    align-items: center;
    justify-content: space-between;
    font-size: 20px;
    font-weight: lighter;
    padding: 0 4.5rem;
    bottom: 0;
}

.icones a{
    color: black;
    margin-left: 15px;
    font-size: 24px;
}

/* FIM DO RODAPE */
