
.centralizarBotao{
width:100%;
text-align:center;
}

.detalheContato {
    display: flex;
    flex-direction: column; /* Coloca os elementos em coluna em telas menores */
    width: 90%;
    max-width: none;
    gap: 20px; /* Adiciona espaço entre os elementos internos */
}

.tableContato {
    width: 100%; /* Garante que a tabela ocupe a largura total do container */
    table-layout: fixed; /* Importante para quebrar o texto dentro das células */
}

.tableContato td {
    word-wrap: break-word; /* Quebra palavras longas se necessário */
    overflow-wrap: break-word; /* Nova propriedade para quebra de palavras, mais moderna */
    padding: 8px; /* Adiciona preenchimento para melhor legibilidade */
}

.posicaoCasa{
padding-top: 2px;
}

.rightMenu {
    display: flex;
    flex-direction: column;
    align-items: right;
    width: 90%;
    max-width: none;
}

.corpoMenu{
text-align: right;
padding-right:max(1.5vh,2.5vw);
}

.corpo{
padding-top:max(3vh,5vw);
}

.titulo ,.subtitulo{
margin:0;
padding:0;
}

.descricao{
margin:0;
padding-top:min(3vh,3vw);
padding-right:0;

}

.bordas{

}

body {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    vertical-align: top;

}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: none;
    padding: 0.5% 0;
    z-index: 10; /* Garante que o cabeçalho esteja acima do modal em termos de z-index */
}

.homepage {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    max-width: none;
}
.headline {
    text-align: center;
}
.subheadline {
    text-align: center;
}
.consulting-text {
    text-align: center;
}
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 100;
    visibility: hidden;
}


@media (max-width: 768px) {
    header {
        width: 90%;
        padding: 3vh 0;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {

    header .logo {
        margin-bottom: 10px;
    }

}