.dadosCliente {
    width: 100%;
    background-color: #FEFEFE;
    padding-bottom: 50px;
}

.dadosCliente h1 {
    text-align: center;
    margin-bottom: 20px;
}

/* Formulário Principal */
.formDados {
    border: solid 2px #333;
    background-color: #E0E0E1;
    width: 65%;
    max-width: 900px;
    height: auto;
    margin: 0 auto;
    border-radius: 40px;
    padding: 30px;
    box-sizing: border-box;
}

/* Alinhamento de Linhas (Label + Input) */
.dados {
    width: 100%;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.dados label {
    width: 260px; /* Largura fixa garante que todos os inputs comecem no mesmo ponto */
    text-align: right;
    margin-right: 15px;
    color: red;
    font-weight: bold;
    font-size: 18px;
}

.dados input {
    flex: 1;
    max-width: 400px;
    padding: 8px 12px; 
    font-size: 14px; 
    color: #000000; 
    background-color: #f8f9fa; 
    border: 2px solid #cccccc; 
    border-radius: 8px; 
    transition: all 0.3s ease;
    text-align: left;
}

.dados input:focus {
    outline: none; 
    border-color: #8B7B6B; 
    background-color: #ffffff; 
    box-shadow: 0 0 10px rgba(139, 123, 107, 0.3); 
}

.endCliente {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 25px 0;
}

.end {
    border: solid 1px #888;
    background-color: #fff;
    width: 48%;
    height: auto; /* Remove altura fixa para não estourar */
    padding: 20px;
    border-radius: 20px;
    box-sizing: border-box;
    
    /* Organiza o conteúdo interno em 2 colunas */
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 10px 12px; /* Espaçamento entre linhas e colunas */
}

/* Título ocupa a largura total das 2 colunas */
.end h5 {
    grid-column: 1 / -1; 
    text-align: center;
    margin: 0 0 10px 0;
    font-size: 18px;
}

.campo {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.campo label {
    font-size: 13px;
    color: red;
    font-weight: bold;
    margin-bottom: 3px;
}

.campo input {
    width: 100%;
    padding: 6px 8px;
    font-size: 13px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    text-align: left;
}

/* Botão Enviar */
.formDados button {
    display: block;
    width: 220px;
    height: 50px;
    margin: 30px auto 10px auto;
    text-align: center;
    border-radius: 20px;
    font-size: 18px;
    font-weight: bold;
    background-color: #CFCECE;
    color: red;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.formDados button:hover {
    background-color: #666766;
    color: greenyellow;
}






/* Seção Geral de Localização e Contatos */
.sec-local {
    background-color: #222222;
    color: #ffffff;
    padding: 50px 20px;
    font-family: Arial, sans-serif;
    width: 100%;
    box-sizing: border-box;
}

/* Limita a largura total e centraliza */
.sec-local .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Título Principal */
.sec-local .tit-geral {
    color: #ff0000;
    font-size: 32px;
    font-weight: normal;
    text-align: center;
    margin: 0 0 35px 0;
}

/* Estrutura dos 3 blocos lado a lado com distância garantida */
.sec-local .conteudo-contato {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px; /* Garante que o mapa nunca encoste nos textos */
}

/* Caixas Laterais (Endereço e Contatos) */
.box-contato {
    flex: 1; /* Ocupa as pontas com o mesmo tamanho */
    text-align: center;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.6;
}

.box-contato strong {
    color: #ffffff;
    font-size: 16px;
}

/* Linha Divisória fina */
.box-contato hr {
    border: none;
    border-top: 1px solid #666666;
    margin: 10px 0 20px 0;
    width: 100%;
}

/* Listas de Telefones e E-mails em Linha */
.box-contato .list-inline {
    padding: 0;
    margin: 5px 0 15px 0;
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.box-contato .list-inline li {
    color: #ffffff;
    font-size: 14px;
}

/* Coluna Central do Mapa */
.map-col {
    flex: 1.4; /* Dá um pouco mais de largura para o mapa no centro */
    display: flex;
    justify-content: center;
}

.map-local {
    width: 100%;
}

.map-local iframe {
    width: 100%;
    height: 300px;
    border: 0;
}