/* ------ Contato ------ */

.contato {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 1rem; /* espaçamento entre colunas */
    background-color: #F7F4FB;
    
}

.contato-container{
    display: flex;
    align-items: stretch; /* garante que a div da direita tenha altura igual à soma das duas da esquerda */
    justify-content: center;
    margin-left: 3.5rem;
    width: 60%;
    gap: 1rem; /* espaçamento entre colunas */
    font-size: small;
}

.icones{
    height: 100%;
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.col-esquerda {
    display: flex;
    flex-direction: column;
    gap: 1rem; /* espaçamento entre as divs empilhadas */
    flex: 1; /* ocupa uma parte proporcional */
    margin-bottom: 3rem;
}


.localizacao,
.horarios {
    border: 1px solid #ddd;
    flex: 1; /* mesma altura para as duas */
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 1rem; /* Espaço entre o ícone e o texto */
    padding: 1rem;
}

.col-direita {
    height: 23.7rem;
    border: 1px solid #bbb;
    flex: 1; /* ocupa mesma largura que a coluna da esquerda */
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.endereco{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
}

.telefone,
.email,
.agendamento {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem; /* Espaço entre o ícone e o texto */
    padding: 1rem;
}

.textos-contato{
    display: flex;
    flex-direction: column; /* empilha os itens */
    gap: 0.2rem;
}

.contato-imagem{
    object-fit: cover;
    width: 3rem;
    height: 3rem;
}

.btn-contato:hover {
    background-color: #7a78c2;
    color: white;
}

.btn-wtz {
    background-color: #0ddf06ab;
}

.btn-wtz:hover {
    background-color: #076804ab;
}

/*RESPONSIVIDADE*/

/* Telas médias (tablets) */
@media (max-width: 992px) {

    .contato-container{
    display: flex;
    justify-content: center;
    margin-left: 3.5rem;
    width: 90%;
    font-size: small;
}


    .botoes-contato{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

}

/* Telas médias (Celulares) */
@media (max-width: 490px) {

    .contato-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: -0.3rem;
}
.col-esquerda {
    margin-bottom: 0rem;
}

}