/* ═══════════════════════════════════════════════════════════════
   style.css — classes BASE da white-page (cloaker)
   Complementa o <style> inline do white-page.html:
   reset, container, header/nav, btn, footer-grid/col/copyright.
   As regras .wp-* (hero, cards, faq...) continuam no <style> inline.
   ═══════════════════════════════════════════════════════════════ */

:root {
  --wp-ink: #0f2a4a;
  --wp-brand: #1f3a5f;
  --wp-accent: #f59e0b;
  --wp-accent-soft: #fbbf24;
  --wp-accent-dark: #d97706;
  --wp-line: #eef2f7;
  --wp-muted: #64748b;
  --wp-radius: 16px;
}

/* ─── Reset / base ─── */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #fff;
  color: var(--wp-ink);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--wp-accent-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { margin: 0; }

/* ─── Layout ─── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ─── Header / Nav ─── */
header { background: linear-gradient(90deg, var(--wp-ink) 0%, var(--wp-brand) 100%); }
.wp-nav-wrap { padding: 16px 0; }
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  color: #fff;
  text-decoration: none;
}
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--wp-accent), var(--wp-accent-soft));
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.35);
}
nav {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}
nav a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
nav a:hover { color: #fff; text-decoration: none; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.95rem 1.8rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--wp-accent-dark), var(--wp-accent));
  border: none;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(217, 119, 6, 0.4);
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}
.btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
  box-shadow: 0 14px 36px rgba(217, 119, 6, 0.55);
}
.btn-secondary {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  box-shadow: none;
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  box-shadow: none;
}

/* ─── Topbar ─── */
.wp-topbar { background: rgba(0, 0, 0, 0.28); font-size: 0.78rem; padding: 8px 0; color: #cbd5e1; }
.wp-topbar .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 6px 18px;
}
.wp-topbar .tb-item { display: inline-flex; align-items: center; gap: 7px; }
.wp-topbar .tb-item svg { opacity: 0.85; }
.wp-topbar a { color: #fff; text-decoration: none; }
.wp-topbar a:hover { text-decoration: underline; }

/* ─── Footer ─── */
footer {
  background: #0a1d35;
  color: #cbd5e1;
  padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-col h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.9rem;
  font-weight: 700;
}
.footer-col p {
  color: #94a3b8;
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0 0 0.8rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
.footer-col li strong { color: #cbd5e1; }
.footer-col a { color: #cbd5e1; text-decoration: none; }
.footer-col a:hover { color: #fff; text-decoration: underline; }
.copyright {
  text-align: center;
  font-size: 0.78rem;
  color: #64748b;
  padding-top: 1.5rem;
}

/* ─── Responsivo ─── */
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .header-content { justify-content: center; text-align: center; }
  nav { justify-content: center; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}
