/* css/contact.css (VERSÃO TOTALMENTE REFORMULADA) */

.contact-section {
    background-color: var(--bg-secondary); /* Cor de fundo da seção */
    padding: 8rem 0;
}

/* --- Cabeçalho da Seção dos Fundadores --- */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem auto;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* --- Grid dos Fundadores --- */
.founders-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 8rem; /* Separação grande para o formulário */
}

/* --- Card Elaborado do Fundador --- */
.founder-card {
    background-color: var(--bg-card);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%; /* Garante altura igual */
}

.founder-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.founder-card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.founder-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gradient-end);
    flex-shrink: 0;
}

.founder-info h3 {
    font-size: 1.4rem;
    color: var(--text-light);
}

.founder-info h4 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--gradient-start);
}

.founder-bio {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1; /* Empurra os ícones sociais para baixo */
}

.founder-socials {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-icon {
    color: var(--text-muted);
    font-size: 1.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
}
.social-icon:hover {
    color: var(--gradient-end);
    transform: translateY(-3px);
}

/* --- Grid de Contato (2 Colunas) --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Coluna de info menor, formulário maior */
    gap: 4rem;
    align-items: center;
}

/* Coluna Esquerda: Informações */
.contact-info h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.contact-info p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.contact-social-links {
    text-align: center;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-icon-lg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background-color: var(--bg-card);
    color: var(--text-muted);
    font-size: 1.6rem;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}
.social-icon-lg:hover {
    background-color: var(--gradient-start);
    border-color: var(--gradient-start);
    color: #fff;
    transform: translateY(-5px);
}

/* Coluna Direita: Formulário */
.contact-form {
    background-color: var(--bg-card);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.form-group {
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1.2rem;
    background-color: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-light);
    font-family: var(--font-family);
    font-size: 1.05rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gradient-end);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.3);
}

.contact-form button {
    width: 100%;
    font-size: 1.1rem;
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 999px) {
    .founders-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        text-align: center;
    }
    .contact-info h2 {
        text-align: center;
    }
    .contact-social-links {
        justify-content: center;
    }
}