:root {
    --page-bg: #f5f7fb;
    --surface: #ffffff;
    --border-soft: #e2eaf3;
    --text-primary: #122a59;
    --text-secondary: #556579;
    --accent-red: #ee4348;
    --accent-blue: #1f68a9;
    --shadow-soft: 0 14px 30px rgba(18, 42, 89, 0.08);
}

body {
    background: var(--page-bg);
    font-family: 'ms-regular', Arial;
}

/* SECTION */
.page-section {
    padding: 30px 0;
}

.link-telefone {
    color: inherit; /* Puxa a cor do texto do parágrafo, sem ficar azul */
    text-decoration: none; /* Tira o sublinhado */
    transition: 0.3s;
}

/* Opcional: Faz o número mudar de cor quando a pessoa passa o mouse por cima no computador */
.link-telefone:hover {
    color: var(--accent-red); /* Pode ser a cor vermelha ou azul da Fundação! */
}
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.section-title span {
    color: var(--accent-red);
}

.section-intro {
    text-align: center;
    margin-bottom: -5px;
}

/* CONTATOS GRID */
.contatos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.contato-card {
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    padding: 15px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: 0.3s;
}

.contato-card:hover {
    transform: translateY(-5px);
}

.contato-card span {
    font-size: 32px;
    color: var(--accent-blue);
}

.contato-card strong {
    display: block;
    margin: 10px 0 5px;
    color: var(--text-primary);
}

/* FORM */
.form-card {
    background: var(--surface);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-soft);
}

.form-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.form-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

input, select, textarea {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid var(--border-soft);
}

textarea {
    min-height: 120px;
    margin-top: 10px;
}

.btn-enviar {
    margin-top: 30px;
    width: 100%;
    padding: 14px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, var(--accent-red), #d9353a);
    color: white;
    font-weight: bold;
    cursor: pointer;
}

.btn-enviar:hover {
    background: linear-gradient(135deg, var(--text-primary), var(--accent-blue));
}

/* MAP */
.map {
    width: 100%;
    height: 320px;
    border-radius: 18px;
    overflow: hidden;
}

/* RESPONSIVO */
@media (max-width: 900px) {
    .contatos-grid {
        grid-template-columns: 1fr 1fr;
    }

    .form-row {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .contatos-grid {
        grid-template-columns: 1fr;
    }
}