/* ============================================================
   PAGE.CSS — Páginas institucionais
   contato.html, privacidade.html, termos.html
   Estilos compartilhados por todas as páginas legais/info.
   Para base compartilhado, ver base.css.
   ============================================================ */

/* ---------- container do artigo (mais estreito) ---------- */
.article-container { max-width: 760px; margin: 0 auto; padding: 60px 28px 80px; }

/* ---------- header (kicker + título) ---------- */
.header { padding: 70px 28px 30px; max-width: 1240px; margin: 0 auto; }
.header h1 {
    font-family: var(--serif); font-weight: 400;
    font-size: clamp(40px, 5vw, 60px);
    line-height: 1.05; letter-spacing: -0.02em;
    margin-bottom: 12px;
}
.header h1 em {
    font-style: italic;
    background: var(--grad);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}
.header .updated {
    font-family: var(--mono); font-size: 12px;
    color: var(--text-dim); letter-spacing: 0.05em;
}

/* ---------- article (páginas legais) ---------- */
article { padding-top: 30px; }
article h2 {
    font-family: var(--serif); font-weight: 400;
    font-size: 28px; letter-spacing: -0.01em;
    margin: 50px 0 14px; color: var(--text);
    display: flex; align-items: baseline; gap: 14px;
}
article h2 .num {
    font-family: var(--mono); font-size: 12px;
    color: var(--text-dim); letter-spacing: 0.1em;
}
article p { color: var(--text-muted); font-size: 15.5px; margin-bottom: 14px; }
article ul { padding-left: 22px; margin-bottom: 16px; }
article li { color: var(--text-muted); font-size: 15.5px; margin-bottom: 8px; }
article li strong { color: var(--text); font-weight: 500; }
article a { color: var(--cyan); text-decoration: none; border-bottom: 1px dotted var(--cyan); }
article a:hover { color: var(--text); border-color: var(--text); }
article strong { color: var(--text); font-weight: 500; }

/* ---------- info cards (contato) ---------- */
.info { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 50px; }
@media (max-width: 700px) { .info { grid-template-columns: 1fr; } }
.info-card {
    padding: 32px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.25s;
}
.info-card:hover { border-color: var(--border-hi); transform: translateY(-2px); }
.info-card.wide { grid-column: 1 / -1; }
.info-card .label {
    font-family: var(--mono); font-size: 11px;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 14px;
    display: flex; align-items: center; gap: 8px;
}
.info-card .label .glyph {
    width: 36px; height: 36px; border-radius: 10px;
    background: var(--surface-hi); border: 1px solid var(--border);
    display: grid; place-items: center; font-size: 17px;
}
.info-card h2 {
    font-family: var(--serif); font-size: 22px; font-weight: 400;
    letter-spacing: -0.01em; margin-bottom: 12px;
}
.info-card p { font-size: 14.5px; color: var(--text-muted); margin-bottom: 6px; }
.info-card a { color: var(--cyan); text-decoration: none; border-bottom: 1px dotted var(--cyan); padding-bottom: 1px; }
.info-card a:hover { color: var(--text); border-color: var(--text); }
.info-card .big-link {
    font-family: var(--serif); font-size: 30px;
    letter-spacing: -0.01em; line-height: 1.1;
    display: block; margin: 4px 0 6px;
}
.info-card .big-link a { color: var(--text); border-bottom: none; }
.info-card .big-link a:hover { color: var(--cyan); }

/* ---------- nota destacada (contato) ---------- */
.note {
    margin-top: 40px; padding: 24px 28px;
    background: linear-gradient(135deg, rgba(125,249,255,0.06), rgba(217,70,239,0.06));
    border: 1px solid rgba(125,249,255,0.2);
    border-radius: 14px;
    font-size: 15px; color: var(--text);
}
.note strong { color: var(--cyan); }

/* ---------- back link ---------- */
.back {
    display: inline-block; margin-top: 50px;
    color: var(--cyan); text-decoration: none; font-size: 15px;
}
.back:hover { color: var(--text); }
