/* RESET BÁSICO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: rgba(255,255,255,1.00);
    color: #333;
    /* Adiciona um espaço no topo igual à altura do header para o conteúdo não sumir atrás dele */
    padding-top: 76px; 
}
html, body {
    overflow-x: hidden; /* Impede a barra de rolagem horizontal em todo o site */
    max-width: 100vw;
}


/* CORES PRINCIPAIS */
:root {
    --azul-escuro: #1b263b;
    --vermelho: #e60000;
    --verde-whats: #00664d;
    --cinza-escuro: #2a2a2a;
}

 .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}


/* Ajuste do cabeçalho da página */
        .page-header { 
        margin-top: 30px;
        margin-bottom: 70px;
            background-color: var(--azul-escuro); 
            color: #fff; 
            text-align: center; 
            padding: 60px 20px; 
        }
        .page-header h1 { font-size: 44px; margin: 0; font-weight: 700; padding-bottom: 27px; }
        .page-header span { color: var(--vermelho); }

.contato-container {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    padding: 80px 20px;
    align-items: flex-start;
}

/* Coluna da Esquerda */
.contato-info {
    flex: 1;
    max-width: 450px;
}

.contato-info h2 {
    color: var(--azul-escuro);
    font-size: 36px;
    margin-bottom: 5px;
}

.contato-info h3 {
    color: #555;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
}

.contato-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 15px;
}

/* Coluna da Direita (Card Branco) */
.contato-form-card {
    flex: 1;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.input-linha {
    margin-bottom: 30px;
}

/* Inputs apenas com linha inferior */
.input-linha input,
.input-linha textarea {
    width: 100%;
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid #ddd;
    font-family: inherit;
    font-size: 16px;
    color: #333;
    background: transparent;
    transition: border-color 0.3s ease;
}

.input-linha input:focus,
.input-linha textarea:focus {
    outline: none;
    border-bottom: 2px solid var(--azul-escuro);
}

.input-linha textarea {
    height: 100px;
    resize: vertical;
}

/* Rodapé do Form (Checkbox e Botão alinhados) */
.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #666;
    cursor: pointer;
}

.btn-enviar {
    background-color: var(--azul-escuro); /* ou var(--vermelho), como preferir */
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s;
}

.btn-enviar:hover {
    background-color: var(--vermelho);
    transform: translateY(-2px);
}

/* Mapa */
.mapa-section {
    width: 100%;
    margin-top: 70px;
    line-height: 0;
    margin-bottom: 70px;
}

/* Mensagens de Sucesso/Erro */
.msg-sucesso-contato { background: #e6f9f0; color: #00664d; padding: 15px; border-radius: 4px; font-weight: bold; margin-bottom: 25px;}
.msg-erro-contato { background: #ffe6e6; color: #cc0000; padding: 15px; border-radius: 4px; font-weight: bold; margin-bottom: 25px;}









/* Responsividade do Contato */
@media (max-width: 768px) {

.container {
    max-width: 350px;
    margin: 0 auto;
    
}

 .page-header { 
        margin-top: 30px;
        margin-bottom: 40px;
            background-color: var(--azul-escuro); 
            color: #fff; 
            text-align: center; 
            padding: 60px 20px; 
        }
        .page-header h1 { font-size: 40px; margin: 0; font-weight: 700; padding-bottom: 7px; }
        .page-header span { color: var(--vermelho); }
        
        
        
    .contato-container {
        flex-direction: column;
        padding: 40px 20px;
    }
    .contato-info {
        max-width: 100%;
    }
    .form-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .btn-enviar {
        width: 100%;
    }
}