/* ================================================================
   Origon Hub — Saúde mental do trabalhador
   Paleta: Sálvia Sereno  |  Tipografia: Fraunces + Inter
   ================================================================ */

:root {
  /* cor base */
  --bg: #F6F2EA;
  --bg-2: #EDE6D5;
  --surface: #FFFFFF;
  --surface-2: #F0EAD9;

  /* texto */
  --text: #1B2A27;
  --text-soft: #2F3E39;
  --muted: #5E6B67;
  --muted-2: #7C8884;

  /* marca */
  --dark: #1F3A36;        /* verde-noite (ancora) */
  --primary: #4F6B5E;     /* sálvia medium (acao) */
  --primary-2: #5A7A6A;   /* sálvia (hover/gradient) */
  --sage: #A9C0A6;        /* sage claro (acentos suaves) */
  --sage-2: #C9D6C4;      /* sage muito claro */

  /* acento terracota (uso restrito) */
  --warm: #C9745A;
  --warm-soft: rgba(201, 116, 90, 0.12);

  /* utilitarios */
  --line: #DDD6C4;        /* borda creme escuro */
  --line-soft: #E8E1CE;
  --primary-soft: rgba(90, 122, 106, 0.12);
  --dark-soft: rgba(31, 58, 54, 0.08);

  /* forma / sombra */
  --radius: 20px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --shadow: 0 18px 48px rgba(31, 58, 54, 0.10);
  --shadow-soft: 0 8px 22px rgba(31, 58, 54, 0.06);
  --shadow-xs: 0 2px 8px rgba(31, 58, 54, 0.05);

  --container: 1160px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .16s ease; }
p { margin: 0 0 1rem; }
ul { margin: 0; padding-left: 1.1rem; }
hr { border: 0; height: 1px; background: var(--line); margin: 2rem 0; }

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  color: var(--text);
  letter-spacing: -0.01em;
  font-weight: 500;
}
h1 { font-size: clamp(2.4rem, 4.4vw, 4rem); line-height: 1.05; margin: 0 0 1.2rem; font-weight: 500; }
h2 { font-size: clamp(1.8rem, 2.8vw, 2.6rem); line-height: 1.12; margin: 0 0 1rem; font-weight: 500; }
h3 { font-size: 1.25rem; line-height: 1.25; margin: 0 0 .6rem; font-weight: 600; }
h4 { font-size: 1.05rem; line-height: 1.3; margin: 0 0 .5rem; font-weight: 600; }

.container { width: min(var(--container), calc(100% - 2rem)); margin: 0 auto; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .4rem .85rem; border-radius: 999px;
  background: var(--primary-soft); color: var(--primary);
  font-family: 'Inter', sans-serif;
  font-weight: 600; letter-spacing: .08em; font-size: .78rem; text-transform: uppercase;
}
.eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 99px; background: var(--primary);
}
.eyebrow--dark { background: rgba(246, 242, 234, 0.14); color: var(--sage-2); }
.eyebrow--dark::before { background: var(--sage); }
.eyebrow--warm { background: var(--warm-soft); color: var(--warm); }
.eyebrow--warm::before { background: var(--warm); }

.section-title { font-size: clamp(1.8rem, 2.8vw, 2.6rem); line-height: 1.1; margin: 1rem 0 1rem; }
.section-intro { max-width: 760px; color: var(--muted); font-size: 1.05rem; }

.grid { display: grid; gap: 1.25rem; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* ============ CARDS ============ */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xs);
  padding: 1.5rem;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); border-color: var(--sage); }
.card h3 { color: var(--dark); }
.card p, .card li { color: var(--muted); }
.card--num { position: relative; padding-top: 1.75rem; }
.card--num .num {
  position: absolute; top: 1.2rem; right: 1.3rem;
  font-family: 'Fraunces', Georgia, serif; font-size: 2rem; font-weight: 500;
  color: var(--sage); line-height: 1; font-style: italic;
}
.card--featured { background: var(--dark); color: var(--bg); border-color: var(--dark); }
.card--featured h3 { color: var(--bg); }
.card--featured p, .card--featured li { color: var(--sage-2); }

.badge {
  display: inline-flex; padding: .3rem .6rem; background: var(--surface-2); border-radius: 999px;
  color: var(--dark); font-weight: 600; font-size: .78rem; text-transform: uppercase; letter-spacing: .06em;
}

/* ============ BOTOES ============ */
.button-row { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 1.5rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: 50px; padding: .8rem 1.3rem; border-radius: 12px; border: 1px solid transparent;
  font-weight: 600; font-size: .97rem; transition: .18s ease; cursor: pointer;
  font-family: inherit;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-soft); }
.btn-primary { background: var(--dark); color: var(--bg); }
.btn-primary:hover { background: var(--primary); }
.btn-secondary { border-color: var(--dark); background: transparent; color: var(--dark); }
.btn-secondary:hover { background: var(--dark); color: var(--bg); }
.btn-ghost { border-color: var(--line); color: var(--text-soft); background: transparent; }
.btn-on-dark { background: var(--bg); color: var(--dark); }
.btn-on-dark:hover { background: var(--sage-2); }
.link-arrow { color: var(--primary); font-weight: 600; }
.link-arrow::after { content: ' →'; transition: transform .16s ease; display: inline-block; }
.link-arrow:hover::after { transform: translateX(3px); }

/* ============ HEADER ============ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(180%) blur(14px);
  background: rgba(246, 242, 234, 0.82);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 78px;
}
.brand { display: inline-flex; align-items: center; }
.brand img { width: 185px; height: auto; }
.nav { display: flex; align-items: center; gap: 1.4rem; }
.nav a {
  color: var(--muted); font-weight: 500; font-size: .96rem; padding: .35rem 0;
  border-bottom: 1.5px solid transparent; transition: color .16s ease, border-color .16s ease;
}
.nav a:hover, .nav a.active { color: var(--dark); border-bottom-color: var(--primary); }
.nav a.nav-cta,
.nav a.nav-cta:hover,
.nav a.nav-cta.active {
  color: var(--bg) !important;
  border-bottom-color: transparent !important;
}
.nav-cta { margin-left: .5rem; border-bottom: 0 !important; }
.menu-toggle {
  display: none; width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--line);
  background: var(--surface); font-size: 1.2rem; cursor: pointer;
}

/* ============ HERO ============ */
.hero {
  padding: 92px 0 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 92% 10%, rgba(90, 122, 106, 0.14), transparent 70%),
    radial-gradient(ellipse 50% 45% at 5% 95%, rgba(169, 192, 166, 0.28), transparent 70%);
  pointer-events: none;
}
.hero > * { position: relative; }
.hero-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center;
}
.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.3rem);
  line-height: 1.02; font-weight: 500; letter-spacing: -0.02em;
  margin: 1.2rem 0 1.3rem;
}
.hero h1 em {
  font-style: italic; color: var(--primary); font-weight: 500;
}
.hero-lead { color: var(--text-soft); font-size: 1.15rem; max-width: 620px; line-height: 1.55; }
.microcopy { color: var(--muted); font-size: .92rem; margin-top: 1.2rem; display: flex; align-items: center; gap: .5rem; }
.microcopy::before { content: ''; width: 28px; height: 1.5px; background: var(--primary); }

.hero-visual {
  position: relative; min-height: 520px; border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 2rem;
  box-shadow: var(--shadow);
  display: grid; gap: 1.2rem; align-content: start;
}
.hero-visual .panel-label {
  font-family: 'Fraunces', serif; font-style: italic; color: var(--primary);
  font-size: .92rem; margin-bottom: .3rem; font-weight: 500;
}
.stat-card {
  border-left: 3px solid var(--primary); padding-left: 1rem;
}
.stat-card strong { display: block; font-family: 'Fraunces', serif; font-size: 2rem; color: var(--dark); line-height: 1.1; font-weight: 600; }
.stat-card span { display: block; color: var(--muted); font-size: .9rem; margin-top: .3rem; }
.hero-callout {
  margin-top: auto; padding: 1rem 1.1rem;
  background: var(--surface-2); border-radius: 14px;
  font-size: .92rem; color: var(--text-soft); line-height: 1.5;
}
.hero-callout strong { color: var(--dark); }

/* ============ LISTAS LIMPAS ============ */
.list-clean { list-style: none; padding: 0; margin: 0; display: grid; gap: .7rem; }
.list-clean li {
  display: flex; gap: .7rem; align-items: flex-start; color: var(--text-soft); line-height: 1.5;
}
.list-clean li::before {
  content: ''; flex: 0 0 8px; width: 8px; height: 8px; margin-top: .55rem; border-radius: 2px; background: var(--primary);
  transform: rotate(45deg);
}
.list-check { list-style: none; padding: 0; margin: 0; display: grid; gap: .7rem; }
.list-check li {
  display: flex; gap: .65rem; align-items: flex-start; color: var(--text-soft);
}
.list-check li::before {
  content: '✓'; flex: 0 0 22px; width: 22px; height: 22px; margin-top: .1rem;
  display: grid; place-items: center; border-radius: 99px; background: var(--primary-soft); color: var(--primary);
  font-size: .82rem; font-weight: 700;
}

/* ============ SECTIONS ============ */
.alt-section { background: linear-gradient(180deg, var(--bg-2), var(--bg)); }
.dark-section {
  background: var(--dark); color: var(--bg);
  position: relative; overflow: hidden;
}
.dark-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 90% 10%, rgba(169, 192, 166, 0.14), transparent 60%),
    radial-gradient(ellipse 40% 40% at 8% 95%, rgba(201, 116, 90, 0.10), transparent 60%);
  pointer-events: none;
}
.dark-section > * { position: relative; }
.dark-section h1, .dark-section h2, .dark-section h3, .dark-section h4 { color: var(--bg); }
.dark-section p, .dark-section .section-intro, .dark-section li { color: var(--sage-2); }
.dark-section .card { background: rgba(255, 255, 255, 0.04); border-color: rgba(169, 192, 166, 0.18); color: var(--bg); }
.dark-section .card h3 { color: var(--bg); }
.dark-section .card p, .dark-section .card li { color: var(--sage-2); }

/* ============ METODOLOGIA — ETAPAS ============ */
.timeline { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1rem; margin-top: 2rem; position: relative; }
.timeline-step {
  position: relative; padding: 1.75rem 1.5rem; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius);
}
.timeline-step .step-no {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--primary-soft); color: var(--primary);
  font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.15rem;
  margin-bottom: 1rem;
}
.timeline-step .step-meta {
  font-size: .82rem; text-transform: uppercase; letter-spacing: .07em;
  color: var(--muted-2); font-weight: 600; margin-bottom: .3rem;
}
.timeline-step h3 { color: var(--dark); }
.timeline-step p { color: var(--muted); margin: 0 0 .8rem; }
.timeline-step ul { padding-left: 1rem; color: var(--muted); font-size: .93rem; }
.timeline-step ul li { margin-bottom: .3rem; }

/* ============ COMPONENTES NUMERADOS ============ */
.components { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; margin-top: 2rem; }
.component-card {
  display: grid; grid-template-columns: 64px 1fr; gap: 1.2rem;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.5rem;
  transition: border-color .2s ease, transform .2s ease;
}
.component-card:hover { border-color: var(--sage); transform: translateY(-2px); }
.component-card .comp-num {
  display: grid; place-items: center;
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--dark); color: var(--bg);
  font-family: 'Fraunces', serif; font-size: 1.3rem; font-weight: 600;
}
.component-card h3 { color: var(--dark); margin-bottom: .5rem; }
.component-card p { color: var(--muted); margin: 0; line-height: 1.55; }

/* ============ QUOTE / PREMISSA ============ */
.quote-block {
  border-radius: var(--radius-lg); padding: 2.5rem;
  background: linear-gradient(135deg, var(--dark) 0%, #2A4A43 100%);
  color: var(--bg); position: relative; overflow: hidden;
  box-shadow: var(--shadow);
}
.quote-block::before {
  content: '"'; position: absolute; top: -40px; right: 20px;
  font-family: 'Fraunces', serif; font-size: 10rem; color: rgba(169, 192, 166, 0.12); line-height: 1;
}
.quote-block h2 { color: var(--bg); font-size: clamp(1.5rem, 2.4vw, 2.2rem); }
.quote-block p { color: var(--sage-2); font-size: 1.08rem; line-height: 1.6; }
.quote-block p strong { color: var(--bg); }

/* ============ FAQ ============ */
.faq-item {
  border-radius: 14px; border: 1px solid var(--line); background: var(--surface);
  overflow: hidden; margin-bottom: .7rem;
}
.faq-item.open { border-color: var(--sage); }
.faq-question {
  width: 100%; text-align: left; padding: 1.2rem 1.3rem;
  font: inherit; font-weight: 600; color: var(--dark);
  border: 0; background: transparent;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; cursor: pointer;
}
.faq-answer { padding: 0 1.3rem 1.3rem; color: var(--muted); display: none; }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--primary); }
.faq-icon {
  transition: transform .2s ease, color .2s ease;
  font-size: 1.4rem; color: var(--muted-2); font-weight: 300;
  flex: 0 0 auto;
}

/* ============ CTA BAND ============ */
.cta-band {
  padding: 2.5rem; border-radius: var(--radius-lg);
  background: var(--dark);
  color: var(--bg);
  box-shadow: var(--shadow);
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 92% 18%, rgba(169, 192, 166, 0.18), transparent 70%),
    radial-gradient(ellipse 40% 35% at 8% 90%, rgba(201, 116, 90, 0.12), transparent 70%);
}
.cta-band > * { position: relative; }
.cta-band h2 { color: var(--bg); }
.cta-band p { color: var(--sage-2); max-width: 700px; }
.cta-band .contact-list { display: flex; gap: .85rem; flex-wrap: wrap; margin-top: 1.3rem; }
.contact-pill {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 1.05rem; background: rgba(246, 242, 234, 0.08);
  border: 1px solid rgba(169, 192, 166, 0.24);
  color: var(--bg);
  border-radius: 12px; font-weight: 500; font-size: .95rem;
}
.contact-pill:hover { background: rgba(246, 242, 234, 0.14); }

/* ============ FORMULARIO ============ */
.form-wrap {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 1.6rem; align-items: start;
}
.form-card {
  padding: 1.75rem; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-xs);
}
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.field { display: grid; gap: .4rem; }
.field.full { grid-column: 1 / -1; }
label { font-weight: 600; font-size: .92rem; color: var(--dark); }
input, textarea, select {
  width: 100%; border-radius: 10px; border: 1px solid var(--line);
  padding: .85rem 1rem; font: inherit; background: var(--surface); color: var(--text);
  font-family: inherit;
}
textarea { min-height: 140px; resize: vertical; }
input:focus, textarea:focus, select:focus {
  outline: 2px solid var(--primary-soft); border-color: var(--primary);
}
.helper { color: var(--muted); font-size: .88rem; }

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: .85rem 1rem;
  border-radius: 999px;
  background: #1f7a47;
  color: #f6f2ea;
  border: 1px solid rgba(246, 242, 234, 0.18);
  box-shadow: 0 16px 32px rgba(31, 58, 54, 0.18);
}

.whatsapp-float:hover {
  background: #17663a;
  color: #f6f2ea;
  transform: translateY(-2px);
}

.whatsapp-float__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(246, 242, 234, 0.14);
  flex: 0 0 auto;
}

.whatsapp-float__label {
  display: grid;
  gap: .08rem;
  line-height: 1.1;
}

.whatsapp-float__label strong {
  font-size: .95rem;
  font-weight: 700;
}

.whatsapp-float__label span {
  font-size: .76rem;
  color: rgba(246, 242, 234, 0.82);
}

/* ============ FOOTER ============ */
.site-footer {
  padding: 64px 0 40px;
  border-top: 1px solid var(--line);
  background: var(--bg-2);
  margin-top: 80px;
}
.footer-grid { display: grid; grid-template-columns: 1.3fr .8fr .9fr; gap: 2rem; }
.footer-title {
  font-size: .78rem; font-weight: 700; margin-bottom: 1rem;
  text-transform: uppercase; letter-spacing: .1em; color: var(--dark);
}
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.footer-links a { color: var(--muted); font-size: .94rem; }
.footer-links a:hover { color: var(--dark); }
.footer-bottom {
  margin-top: 2.5rem; padding-top: 1.3rem;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: .8rem; justify-content: space-between; align-items: center;
}
.footer-bottom small { color: var(--muted-2); font-size: .84rem; }
.small { font-size: .92rem; color: var(--muted); }

/* ============ PAGINAS INTERNAS ============ */
.page-hero {
  padding: 72px 0 32px;
  position: relative;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 90% 0%, rgba(169, 192, 166, 0.22), transparent 70%);
  pointer-events: none;
}
.page-hero > * { position: relative; }
.page-hero p { color: var(--muted); max-width: 760px; font-size: 1.08rem; }
.breadcrumbs { font-size: .88rem; color: var(--muted-2); margin-bottom: 1rem; }
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--dark); }

.content-prose h2, .content-prose h3 { line-height: 1.2; margin-top: 2rem; color: var(--dark); }
.content-prose h2:first-child, .content-prose h3:first-child { margin-top: 0; }
.content-prose p, .content-prose li { color: var(--muted); line-height: 1.7; }
.content-prose strong { color: var(--text); }
.sticky-card { position: sticky; top: 108px; }

.notice {
  border-left: 4px solid var(--primary); padding: 1rem 1.1rem;
  background: var(--surface); border-radius: 0 12px 12px 0;
  box-shadow: var(--shadow-xs);
}
.notice strong { color: var(--dark); display: block; margin-bottom: .25rem; }
.notice p:last-child { margin-bottom: 0; }

.success-box {
  max-width: 720px; margin: 0 auto; text-align: center;
  padding: 2.5rem; border-radius: var(--radius-lg);
  border: 1px solid var(--line); background: var(--surface); box-shadow: var(--shadow-soft);
}
.success-mark {
  width: 64px; height: 64px; border-radius: 16px; margin: 0 auto 1rem;
  display: grid; place-items: center; font-size: 1.7rem; font-weight: 700;
  background: var(--primary-soft); color: var(--primary);
}

.pullquote {
  font-family: 'Fraunces', serif; font-size: 1.35rem; line-height: 1.4;
  color: var(--dark); font-style: italic; font-weight: 500;
  padding: 1.5rem 0 1.5rem 1.5rem; border-left: 3px solid var(--primary);
}

/* ============ REGULATORIO ============ */
.reg-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-top: 1.5rem;
}
.reg-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.75rem;
}
.reg-card .tag {
  display: inline-block; padding: .28rem .6rem; border-radius: 6px;
  background: var(--dark); color: var(--bg);
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: .72rem;
  letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: .8rem;
}
.reg-card h3 { color: var(--dark); margin-bottom: .5rem; }
.reg-card p { color: var(--muted); margin: 0 0 .8rem; }

/* ============ VALORES MISSAO VISAO ============ */
.mv-card {
  padding: 1.75rem; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-xs);
}
.mv-card .mv-label {
  font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  color: var(--primary); margin-bottom: .6rem;
}
.mv-card h3 { color: var(--dark); font-family: 'Fraunces', serif; font-size: 1.35rem; }

/* ============ FOUNDER ============ */
.founder-card {
  padding: 2rem; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  display: grid; grid-template-columns: 140px 1fr; gap: 1.8rem; align-items: start;
}
.founder-avatar {
  width: 140px; height: 140px; border-radius: 50%;
  background: linear-gradient(135deg, var(--dark), var(--primary));
  display: grid; place-items: center;
  font-family: 'Fraunces', serif; font-size: 3.5rem; color: var(--bg); font-weight: 500;
  box-shadow: var(--shadow);
}
.founder-meta {
  display: flex; flex-wrap: wrap; gap: .6rem; margin-top: .6rem; margin-bottom: 1rem;
}
.founder-meta .tag {
  padding: .3rem .7rem; background: var(--surface-2); border-radius: 99px;
  font-size: .82rem; font-weight: 500; color: var(--dark);
}

/* ============ RESPONSIVO ============ */
@media (max-width: 980px) {
  .hero-grid, .form-wrap, .footer-grid, .grid-2, .grid-4, .timeline, .grid-3, .reg-grid, .components {
    grid-template-columns: 1fr;
  }
  .hero-visual { min-height: auto; padding: 1.5rem; }
  .hero { padding: 64px 0 40px; }
  .section { padding: 72px 0; }
  .nav {
    position: fixed; inset: 78px 1rem auto 1rem; display: none;
    flex-direction: column; align-items: stretch;
    background: var(--surface); border: 1px solid var(--line);
    border-radius: 16px; padding: 1rem; box-shadow: var(--shadow);
    gap: .3rem;
  }
  .nav a { padding: .7rem .5rem; border-bottom: 0; }
  .nav.open { display: flex; }
  .nav-cta { margin-left: 0; margin-top: .3rem; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .founder-card { grid-template-columns: 1fr; text-align: center; }
  .founder-avatar { margin: 0 auto; }
}

@media (max-width: 640px) {
  .section { padding: 60px 0; }
  .hero { padding-top: 40px; }
  h1 { font-size: 2.2rem; }
  .hero-visual { padding: 1.2rem; }
  .component-card { grid-template-columns: 1fr; gap: .8rem; }
  .quote-block { padding: 1.8rem; }
  .cta-band { padding: 1.75rem; }
  .form-card { padding: 1.3rem; }
  .founder-card { padding: 1.5rem; }
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    padding: .7rem;
  }
  .whatsapp-float__label { display: none; }
  .whatsapp-float__icon {
    width: 46px;
    height: 46px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; }
}

/* ============ PÁGINAS LEGAIS ============ */
.legal-block {
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--line);
}
.legal-block:last-child { border-bottom: 0; }
.legal-block h2 {
  font-size: 1.5rem;
  margin: 0 0 .8rem;
  color: var(--dark);
  letter-spacing: -.01em;
}
.legal-block p {
  line-height: 1.75;
  margin: 0 0 .9rem;
}
.legal-block p:last-child { margin-bottom: 0; }
.legal-block ul.list-check {
  margin: .6rem 0 1rem;
}
.legal-block a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-block a:hover { color: var(--dark); }
.legal-block strong { color: var(--dark); }
