:root {
    --color-dark-bg: #0D0B12; /* Cor de fundo escura (ajuste conforme a imagem) */
    --color-white: #FFFFFF;
    --color-text-dark: #333;
    --color-text-light: #E0E0E0;
    --color-purple-gradient: linear-gradient(90deg, #C198FF 0%, #271675 100%);
    --color-border: #D9D9D9;
}

body {
    font-family: 'Manrope', sans-serif;
    margin: 0;
    background-color: var(--color-white);
    line-height: 1.6;
}

/* --- Estrutura Principal (Layout) --- */
.contact-container {
    display: grid;
    grid-template-columns: 50% 50%;
    min-height: 100vh;
    width: 100%;
}

/* --- Coluna da Esquerda (Info) --- */
.contact-info {
    background-color: var(--color-dark-bg);
    color: var(--color-white);
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-image: url('../img/orb.gif');
    background-size: cover;
    background-position: center;
}

.contact-info .logo {
    width: 120px; /* Ajuste o tamanho do logo */
    margin-bottom: 10px;
}

.contact-info h1 {
    font-size: 2.5rem; /* 40px */
    font-weight: 600;
}

.contact-info .subtitle {
    font-size: 15px;
    color: var(--color-text-light);
    margin-bottom: 50px;
}

.contact-info .info-block {
    margin-bottom: 25px;
}

.contact-info .info-block p {
    margin: 0;
    font-size: 0.9rem;
}

.contact-info .info-block p:first-child {
    font-weight: 700;
}

/* --- Coluna da Direita (Formulário) --- */
.contact-form-section {
    background-color: var(--color-white);
    color: var(--color-text-dark);
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form-section h2 {
    font-size: 1.75rem; /* 28px */
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.875rem; /* 14px */
    font-weight: 600;
    margin-bottom: 8px;
    color: #555;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box; 
}

.form-group input::placeholder,
.form-group select {
    color: #999;
}

.form-group select:invalid {
    color: #999; 
}

.submit-btn {
    background: var(--color-purple-gradient);
    color: var(--color-white);
    border: none;
    padding: 16px 40px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    opacity: 0.9;
    box-shadow: 0 4px 15px rgba(122, 78, 255, 0.3);
}

@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr; 
    }
    
    .contact-info {
        padding: 50px 30px;
        text-align: center;
        align-items: center;
    }

    .contact-form-section {
        padding: 50px 30px;
    }
}


/* ================================================= */
/* --- Estilos para Páginas de Conteúdo (Política) --- */
/* ================================================= */

/* Estiliza os títulos (h2, h3...) e parágrafos (p)
  APENAS quando estiverem dentro da coluna da direita.
*/

.contact-form-section h2 {
    font-size: 1.75rem; /* 28px */
    margin-bottom: 20px;
    margin-top: 10px;
}

.contact-form-section h2:first-of-type {
    margin-top: 0;
}

.contact-form-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-top: 30px;
    margin-bottom: 10px;
}

.contact-form-section p,
.contact-form-section li {
    font-size: 1rem; /* 16px */
    color: #555;
    line-height: 1.7; /* Mais espaço entre linhas para leitura */
    margin-bottom: 15px;
}

.contact-form-section ul {
    padding-left: 30px; /* Alinhamento da lista */
    margin-bottom: 20px;
}

.contact-form-section a {
    /* Use uma cor sólida (talvez do seu gradiente) para links */
    color: #5e2ff7; 
    text-decoration: none;
    font-weight: 600;
}

.contact-form-section a:hover {
    text-decoration: underline;
}