/*
Theme Name: ACAFLOR
Theme URI: https://acaflor.org.br
Author: MedRocket para ACAFLOR
Description: Tema institucional da Associação Canábica Florescer, com o visual do novo site. Feito para funcionar junto do plugin ACAFLOR Portal (profissionais, loja, vagas, blog e depoimentos).
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: acaflor-tema
Tags: institucional, saude, associacao
*/

/* =========================================================
   ACAFLOR — Sistema de design (protótipo v2)
   Paleta verde/acolhedora + acento "florescer" dourado.
   Todas as cores em variáveis para troca fácil pelo hex oficial.
   ========================================================= */

:root {
  /* Verdes — paleta oficial ACAFLOR (Manual de marca 2023) */
  --green-900: #032414;
  --green-800: #05371f;
  --green-700: #064c2e;   /* PRIMÁRIA da marca */
  --green-600: #08995c;   /* verde vivo da marca */
  --green-500: #2aa66e;
  --green-400: #57bd86;
  --green-300: #9ad4ad;
  --green-100: #cde4c4;   /* verde claro da marca */
  --green-50:  #eef6ef;

  /* Folha / verde vivo */
  --leaf: #08995c;
  --leaf-dark: #067045;

  /* Vermelho da marca (acento pontual) */
  --red: #e52026;
  --red-dark: #c31419;

  /* Bloom — dourado/creme da marca (doação/CTA quente) */
  --bloom: #c98a12;
  --bloom-dark: #9c6a0e;
  --bloom-soft: #ffe49d;

  /* Neutros */
  --cream: #faf8f2;
  --cream-2: #f1f6ee;
  --ink: #0c211a;
  --ink-soft: #38473f;
  --muted: #647568;
  --line: #e7e7de;
  --white: #ffffff;

  /* Tipografia — Unbounded (display) + Poppins (UI) + Inter (texto) */
  --font-display: 'Unbounded', 'Poppins', system-ui, sans-serif;
  --font-head: 'Poppins', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Formas */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 34px;
  --r-full: 999px;

  /* Sombras */
  --sh-sm: 0 2px 10px rgba(16, 53, 42, .06);
  --sh-md: 0 12px 30px rgba(16, 53, 42, .10);
  --sh-lg: 0 24px 60px rgba(16, 53, 42, .16);

  --container: 1200px;
  --gutter: clamp(18px, 4vw, 40px);
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--green-900); line-height: 1.15; margin: 0 0 .5em; font-weight: 600; }
h1, h2 { font-family: var(--font-display); letter-spacing: -.03em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.5rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); letter-spacing: -.015em; }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
p  { margin: 0 0 1rem; color: var(--ink-soft); }

.container { width: min(var(--container), 100% - var(--gutter) * 2); margin-inline: auto; }
.section { padding: clamp(56px, 8vw, 110px) 0; }
.section--tight { padding: clamp(40px, 5vw, 70px) 0; }

/* ---------- Helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600;
  font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--leaf-dark);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--leaf); border-radius: 2px; }
.eyebrow--center::after { content: ""; width: 22px; height: 2px; background: var(--leaf); border-radius: 2px; }
.section-head { max-width: 720px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { font-size: 1.06rem; }
.lead { font-size: 1.15rem; color: var(--ink-soft); }

.grid { display: grid; gap: clamp(18px, 2.4vw, 28px); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 26px; border-radius: var(--r-full);
  font-family: var(--font-head); font-weight: 600; font-size: .98rem;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--green-700); color: #fff; box-shadow: 0 10px 22px rgba(30, 107, 71, .28); }
.btn--primary:hover { background: var(--green-800); transform: translateY(-2px); box-shadow: 0 16px 30px rgba(30, 107, 71, .34); }
.btn--bloom { background: var(--bloom); color: #3a2a08; box-shadow: 0 10px 22px rgba(226, 154, 58, .34); }
.btn--bloom:hover { background: var(--bloom-dark); color: #fff; transform: translateY(-2px); }
.btn--ghost { background: rgba(255,255,255,.14); color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.5); }
.btn--ghost:hover { background: rgba(255,255,255,.24); transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--green-700); box-shadow: inset 0 0 0 1.6px var(--green-300); }
.btn--outline:hover { background: var(--green-50); transform: translateY(-2px); }
.btn--wa { background: #25d366; color: #063; }
.btn--wa:hover { background: #1fb757; color: #fff; transform: translateY(-2px); }
.btn--lg { padding: 17px 34px; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--green-900); color: #cfe8da;
  font-size: .86rem;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 44px; padding-block: 6px; }
.topbar a { color: #eaf6ef; }
.topbar .topbar__contact { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar .topbar__contact span { display: inline-flex; align-items: center; gap: 7px; opacity: .92; }
.topbar__cta { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; color: #fff; background: rgba(255,255,255,.12); padding: 6px 14px; border-radius: var(--r-full); }
.topbar__cta:hover { background: rgba(255,255,255,.22); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(250, 248, 242, .88);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease;
}
.site-header.scrolled { box-shadow: var(--sh-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 74px; }
.nav__logo img { height: 46px; width: auto; }
.nav__logo .txtlogo { font-family: var(--font-head); font-weight: 700; color: var(--green-800); font-size: 1.35rem; letter-spacing: -.02em; }
.nav__menu { display: flex; align-items: center; gap: 4px; }
.nav__menu > li { position: relative; }
.nav__link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 14px; border-radius: var(--r-full);
  font-family: var(--font-head); font-weight: 500; font-size: .96rem; color: var(--ink);
  transition: background .16s, color .16s;
}
.nav__link:hover, .nav__item.open .nav__link { background: var(--green-50); color: var(--green-800); }
.nav__link .chev { width: 15px; height: 15px; transition: transform .2s; }
.nav__item.open .nav__link .chev { transform: rotate(180deg); }
.nav__dd {
  position: absolute; top: calc(100% + 10px); left: 0;
  min-width: 262px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-md); box-shadow: var(--sh-md); padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: .2s ease;
}
.nav__item.open .nav__dd { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__dd a { display: block; padding: 11px 14px; border-radius: var(--r-sm); font-size: .93rem; font-weight: 500; color: var(--ink-soft); }
.nav__dd a small { display: block; font-weight: 400; font-size: .8rem; color: var(--muted); margin-top: 2px; }
.nav__dd a:hover { background: var(--green-50); color: var(--green-800); }
.nav__actions { display: flex; align-items: center; gap: 10px; }
.nav__toggle { display: none; width: 46px; height: 46px; border-radius: 12px; background: var(--green-50); }
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: ""; display: block; width: 22px; height: 2.4px; background: var(--green-800); border-radius: 2px; position: relative; margin: 0 auto; transition: .25s;
}
.nav__toggle span::before { position: absolute; top: -7px; }
.nav__toggle span::after { position: absolute; top: 7px; }
body.menu-open .nav__toggle span { background: transparent; }
body.menu-open .nav__toggle span::before { top: 0; transform: rotate(45deg); }
body.menu-open .nav__toggle span::after { top: 0; transform: rotate(-45deg); }

/* ---------- Hero slider ---------- */
.hero { position: relative; }
.hero__track { position: relative; }
.hero__slide {
  position: relative; display: none;
  min-height: clamp(520px, 76vh, 720px);
  align-items: center;
  background-color: var(--green-900);
  background-size: cover; background-position: center;
}
.hero__slide.active { display: flex; animation: fade .8s ease; }
@keyframes fade { from { opacity: .4 } to { opacity: 1 } }
.hero__slide::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(16,53,42,.92) 0%, rgba(16,53,42,.72) 40%, rgba(16,53,42,.28) 100%);
}
.hero__inner { position: relative; z-index: 2; max-width: 640px; color: #fff; padding-block: 60px; }
.hero__inner .eyebrow { color: var(--green-300); }
.hero__inner .eyebrow::before { background: var(--green-300); }
.hero h1 { color: #fff; margin-bottom: .35em; }
.hero p { color: #e4f0e9; font-size: 1.18rem; max-width: 540px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero__dots { position: absolute; z-index: 3; bottom: 26px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; }
.hero__dots button { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,.45); transition: .2s; }
.hero__dots button.active { background: #fff; width: 30px; border-radius: 6px; }
.hero__arrow {
  position: absolute; z-index: 3; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,.16);
  color: #fff; display: grid; place-items: center; transition: .2s; backdrop-filter: blur(4px);
}
.hero__arrow:hover { background: rgba(255,255,255,.3); }
.hero__arrow.prev { left: 24px; } .hero__arrow.next { right: 24px; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 18px 26px; margin-top: 34px; }
.hero__badges span { display: inline-flex; align-items: center; gap: 9px; color: #dcece3; font-size: .93rem; font-weight: 500; }
.hero__badges svg { width: 20px; height: 20px; color: var(--green-300); flex: none; }

/* ---------- Quem somos ---------- */
.about__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.about__media { position: relative; }
.about__media img { border-radius: var(--r-lg); box-shadow: var(--sh-md); aspect-ratio: 4/3.4; object-fit: cover; width: 100%; }
.about__media .leaf-blob { position: absolute; inset: auto -22px -22px auto; width: 130px; height: 130px; background: var(--leaf); border-radius: 40% 60% 62% 38% / 47% 44% 56% 53%; opacity: .18; z-index: -1; }
.about__stats { display: flex; gap: 26px; flex-wrap: wrap; margin-top: 26px; }
.about__stats .stat b { font-family: var(--font-head); font-size: 2rem; color: var(--green-700); display: block; line-height: 1; }
.about__stats .stat span { font-size: .88rem; color: var(--muted); }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0 26px; }
.chip { display: inline-flex; align-items: center; gap: 7px; background: var(--green-50); color: var(--green-800); font-weight: 500; font-size: .88rem; padding: 8px 15px; border-radius: var(--r-full); }
.chip svg { width: 15px; height: 15px; color: var(--leaf-dark); }

/* ---------- Cards genéricos ---------- */
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(22px, 3vw, 32px); box-shadow: var(--sh-sm); transition: transform .2s, box-shadow .2s; height: 100%; }
.card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.card__icon { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; background: var(--green-50); color: var(--green-700); margin-bottom: 18px; }
.card__icon svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: .4em; }
.card p { font-size: .97rem; margin: 0; }
.card--bloom .card__icon { background: #fdf1dd; color: var(--bloom-dark); }

/* seção verde escura */
.section--dark { background: radial-gradient(120% 120% at 15% 0%, var(--green-800), var(--green-900)); color: #dfeee6; }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: #c4dccf; }
.section--dark .eyebrow { color: var(--green-300); } .section--dark .eyebrow::before { background: var(--green-300); }
.section--soft { background: var(--green-50); }
.section--cream2 { background: var(--cream-2); }

/* ---------- Doação ---------- */
.donate { position: relative; overflow: hidden; }
.donate__card {
  background: linear-gradient(120deg, var(--green-800), var(--green-700));
  border-radius: var(--r-xl); padding: clamp(34px, 5vw, 64px);
  color: #fff; position: relative; overflow: hidden;
}
.donate__card::before { content: ""; position: absolute; right: -60px; top: -60px; width: 260px; height: 260px; background: radial-gradient(circle, rgba(226,154,58,.5), transparent 70%); }
.donate__grid { display: grid; grid-template-columns: 1.25fr .85fr; gap: 40px; align-items: center; position: relative; z-index: 2; }
.donate h2 { color: #fff; font-size: clamp(1.8rem, 3.4vw, 2.7rem); }
.donate .rotator { color: var(--bloom-soft); }
.rotator { display: inline-block; position: relative; min-width: 5ch; }
.rotator__word { display: inline-block; animation: rotIn .5s ease; }
@keyframes rotIn { from { opacity: 0; transform: translateY(14px) } to { opacity: 1; transform: translateY(0) } }
.donate p { color: #dcece3; }
.donate__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.donate__aside { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16); border-radius: var(--r-lg); padding: 26px; }
.donate__aside h3 { font-size: 1.15rem; margin-bottom: .5em; }
.donate__aside p { font-size: .95rem; margin-bottom: 1em; }
.donate__aside .link-arrow { color: var(--bloom-soft); }

.link-arrow { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-head); font-weight: 600; color: var(--green-700); }
.link-arrow svg { width: 17px; height: 17px; transition: transform .2s; }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- Impacto (cards com imagem) ---------- */
.impact-card { background: #fff; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-sm); border: 1px solid var(--line); transition: transform .2s, box-shadow .2s; height: 100%; display: flex; flex-direction: column; }
.impact-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.impact-card__img { aspect-ratio: 16/10; background: var(--green-100); background-size: cover; background-position: center; }
.impact-card__body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.impact-card__body h3 { margin-bottom: .5em; }
.impact-card__body p { font-size: .96rem; flex: 1; }
.tag { display: inline-block; font-size: .74rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--leaf-dark); background: var(--green-50); padding: 5px 12px; border-radius: var(--r-full); margin-bottom: 14px; }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin-inline: auto; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); margin-bottom: 14px; overflow: hidden; transition: box-shadow .2s; }
.faq__item.open { box-shadow: var(--sh-sm); border-color: var(--green-300); }
.faq__q { width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; font-family: var(--font-head); font-weight: 600; font-size: 1.03rem; color: var(--green-900); }
.faq__q .ic { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--green-50); color: var(--green-700); display: grid; place-items: center; transition: .25s; }
.faq__item.open .faq__q .ic { background: var(--green-700); color: #fff; transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq__a-inner { padding: 0 24px 22px; color: var(--ink-soft); font-size: .98rem; }
.faq__a-inner ul { columns: 2; gap: 30px; margin-top: 6px; }
.faq__a-inner ul li { position: relative; padding-left: 18px; margin-bottom: 5px; break-inside: avoid; font-size: .92rem; }
.faq__a-inner ul li::before { content: ""; position: absolute; left: 0; top: 9px; width: 7px; height: 7px; border-radius: 50%; background: var(--leaf); }

/* ---------- Contato ---------- */
.contact__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(30px, 5vw, 56px); }
.contact__info .contact-item { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact__info .contact-item:last-child { border-bottom: none; }
.contact__info .ic { flex: none; width: 48px; height: 48px; border-radius: 14px; background: var(--green-50); color: var(--green-700); display: grid; place-items: center; }
.contact__info .ic svg { width: 22px; height: 22px; }
.contact__info h4 { font-size: 1rem; margin: 0 0 3px; color: var(--green-900); }
.contact__info p, .contact__info a { margin: 0; font-size: .96rem; color: var(--ink-soft); }
.form { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(24px, 3vw, 34px); box-shadow: var(--sh-sm); }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .84rem; font-weight: 600; color: var(--green-800); margin-bottom: 6px; font-family: var(--font-head); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  font-family: inherit; font-size: .96rem; color: var(--ink); background: var(--cream); transition: border .18s, box-shadow .18s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green-500); box-shadow: 0 0 0 3px rgba(55,160,106,.16); background: #fff; }
.field textarea { min-height: 120px; resize: vertical; }

/* ---------- Page hero (interior) ---------- */
.page-hero { position: relative; background: radial-gradient(120% 130% at 12% 0%, var(--green-800), var(--green-900)); color: #fff; padding: clamp(56px, 9vw, 108px) 0 clamp(50px, 7vw, 84px); overflow: hidden; }
.page-hero::before { content: ""; position: absolute; right: -80px; top: -60px; width: 340px; height: 340px; background: radial-gradient(circle, rgba(124,179,66,.35), transparent 70%); }
.page-hero__inner { position: relative; z-index: 2; max-width: 720px; }
.page-hero h1 { color: #fff; }
.page-hero p { color: #d3e6db; font-size: 1.16rem; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: .85rem; color: #a9c9b7; margin-bottom: 18px; }
.breadcrumb a { color: #cfe6d9; } .breadcrumb span { opacity: .6; }

/* ---------- Portal Nordeste Canábico — head provisória do blog ---------- */
.portal-hero {
  position: relative; overflow: hidden; color: #fff;
  background:
    radial-gradient(90% 140% at 85% -20%, rgba(8,153,92,.55), transparent 60%),
    radial-gradient(70% 120% at 0% 110%, rgba(229,32,38,.28), transparent 55%),
    linear-gradient(150deg, var(--green-800), var(--green-900));
  padding: clamp(64px, 10vw, 130px) 0 clamp(56px, 8vw, 100px);
}
.portal-hero::before {
  content: "❋"; position: absolute; right: -40px; top: -60px; font-size: 340px; line-height: 1;
  color: rgba(255,255,255,.05); transform: rotate(18deg); pointer-events: none;
}
.portal-hero__inner { position: relative; z-index: 2; max-width: 840px; text-align: center; margin-inline: auto; }
.portal-hero__kicker {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22);
  color: var(--bloom-soft); font-family: var(--font-head); font-weight: 600;
  font-size: .8rem; letter-spacing: .18em; text-transform: uppercase;
  padding: 8px 20px; border-radius: var(--r-full); margin-bottom: 22px;
}
.portal-hero h1 {
  color: #fff; font-size: clamp(2rem, 5.6vw, 3.8rem); line-height: 1.06; margin-bottom: .35em;
}
.portal-hero h1 .nc { display: block; color: var(--green-300); }
.portal-hero p { color: #d3e6db; font-size: clamp(1rem, 1.6vw, 1.2rem); max-width: 620px; margin-inline: auto; }
.portal-hero__topics { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 26px; }
.portal-hero__topics span {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); color: #eaf6ef;
  font-family: var(--font-head); font-weight: 500; font-size: .85rem; padding: 7px 16px; border-radius: var(--r-full);
}
.portal-hero__by { margin-top: 28px; display: inline-flex; align-items: center; gap: 10px; color: #a9c9b7; font-size: .85rem; }
.portal-hero__by img { height: 30px; width: auto; }

/* ---------- Steps ---------- */
.steps { counter-reset: step; display: grid; gap: 18px; }
.step { display: flex; gap: 20px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 22px 24px; box-shadow: var(--sh-sm); }
.step__num { counter-increment: step; flex: none; width: 44px; height: 44px; border-radius: 50%; background: var(--green-700); color: #fff; font-family: var(--font-head); font-weight: 700; display: grid; place-items: center; }
.step__num::before { content: counter(step); }
.step h4 { margin: 2px 0 5px; color: var(--green-900); font-size: 1.08rem; }
.step p { margin: 0; font-size: .95rem; }

/* ---------- Price / anuidade ---------- */
.price-card { background: linear-gradient(150deg, var(--green-700), var(--green-800)); color: #fff; border-radius: var(--r-xl); padding: clamp(30px, 4vw, 44px); box-shadow: var(--sh-lg); position: relative; overflow: hidden; }
.price-card::after { content: ""; position: absolute; left: -40px; bottom: -40px; width: 180px; height: 180px; background: radial-gradient(circle, rgba(226,154,58,.4), transparent 70%); }
.price-card .tagline { color: var(--green-300); font-weight: 600; font-family: var(--font-head); letter-spacing: .04em; }
.price-card .amount { font-family: var(--font-head); font-weight: 700; font-size: clamp(2.6rem, 6vw, 3.6rem); line-height: 1; margin: 8px 0; }
.price-card .amount small { font-size: 1rem; font-weight: 500; opacity: .8; }
.price-card ul { margin: 22px 0; display: grid; gap: 12px; position: relative; z-index: 2; }
.price-card ul li { display: flex; gap: 11px; align-items: flex-start; color: #e6f2eb; font-size: .96rem; }
.price-card ul li svg { flex: none; width: 20px; height: 20px; color: var(--green-300); margin-top: 2px; }

/* ---------- Doc list ---------- */
.doclist { display: grid; gap: 12px; }
.doc { display: flex; gap: 15px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 16px 20px; }
.doc__n { flex: none; width: 34px; height: 34px; border-radius: 10px; background: var(--green-50); color: var(--green-700); font-family: var(--font-head); font-weight: 700; display: grid; place-items: center; font-size: .95rem; }
.doc b { color: var(--green-900); font-family: var(--font-head); font-size: .98rem; }
.doc small { color: var(--muted); display: block; font-size: .85rem; }
.doc.optional { border-style: dashed; }

/* ---------- Blog ---------- */
.post-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column; height: 100%; box-shadow: var(--sh-sm); transition: transform .2s, box-shadow .2s; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.post-card__img { aspect-ratio: 16/10; background: var(--green-100); background-size: cover; background-position: center; position: relative; }
.post-card__img .tag { position: absolute; left: 14px; top: 14px; margin: 0; background: rgba(255,255,255,.92); }
.post-card__body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.post-card__meta { font-size: .82rem; color: var(--muted); display: flex; gap: 14px; margin-bottom: 10px; }
.post-card__body h3 { font-size: 1.16rem; margin-bottom: .5em; }
.post-card__body h3 a:hover { color: var(--green-700); }
.post-card__body p { font-size: .94rem; flex: 1; }
.featured-post { display: grid; grid-template-columns: 1.1fr 1fr; background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-md); }
.featured-post__img { min-height: 320px; background: var(--green-100); background-size: cover; background-position: center; }
.featured-post__body { padding: clamp(28px, 4vw, 48px); display: flex; flex-direction: column; justify-content: center; }
.featured-post__body h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
.cat-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.cat-pill { padding: 9px 18px; border-radius: var(--r-full); background: #fff; border: 1.5px solid var(--line); font-family: var(--font-head); font-weight: 500; font-size: .9rem; color: var(--ink-soft); transition: .18s; }
.cat-pill:hover, .cat-pill.active { background: var(--green-700); color: #fff; border-color: var(--green-700); }

/* article body */
.article { max-width: 760px; margin-inline: auto; }
.article p { font-size: 1.08rem; line-height: 1.8; }
.article h2 { margin-top: 1.6em; }
.article h3 { margin-top: 1.3em; }
.article img { border-radius: var(--r-md); margin: 1.5em 0; }
.article blockquote { border-left: 4px solid var(--leaf); background: var(--green-50); padding: 18px 24px; border-radius: 0 var(--r-sm) var(--r-sm) 0; margin: 1.5em 0; font-size: 1.1rem; color: var(--green-900); font-style: italic; }

/* ---------- Loja ---------- */
.shop-layout { display: grid; grid-template-columns: 240px 1fr; gap: 36px; align-items: start; }
.shop-filters { position: sticky; top: 96px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px; box-shadow: var(--sh-sm); }
.shop-filters h4 { font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 14px; }
.shop-filters .filter { display: block; width: 100%; text-align: left; padding: 10px 14px; border-radius: var(--r-sm); font-weight: 500; color: var(--ink-soft); margin-bottom: 4px; transition: .16s; }
.shop-filters .filter:hover, .shop-filters .filter.active { background: var(--green-50); color: var(--green-800); }
.shop-filters .filter .count { float: right; color: var(--muted); font-size: .85rem; }
.product { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--sh-sm); transition: transform .2s, box-shadow .2s; }
.product:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.product__img { aspect-ratio: 1/1; background: var(--green-50); position: relative; display: grid; place-items: center; overflow: hidden; }
.product__img img { width: 100%; height: 100%; object-fit: cover; }
.product__badge { position: absolute; top: 12px; left: 12px; background: var(--bloom); color: #3a2a08; font-family: var(--font-head); font-weight: 600; font-size: .72rem; padding: 5px 11px; border-radius: var(--r-full); }
.product__badge.green { background: var(--green-700); color: #fff; }
.product__body { padding: 18px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.product__cat { font-size: .76rem; text-transform: uppercase; letter-spacing: .06em; color: var(--leaf-dark); font-weight: 600; }
.product__body h3 { font-size: 1.05rem; margin: 6px 0 8px; }
.product__price { font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; color: var(--green-800); margin-bottom: 4px; }
.product__redeem { font-size: .82rem; color: var(--muted); margin-bottom: 14px; }
.product__body .btn { margin-top: auto; }
.cart-fab { position: fixed; right: 22px; bottom: 22px; z-index: 70; background: var(--green-700); color: #fff; border-radius: var(--r-full); padding: 14px 22px; display: inline-flex; align-items: center; gap: 10px; box-shadow: var(--sh-lg); font-family: var(--font-head); font-weight: 600; transition: transform .2s; }
.cart-fab:hover { transform: translateY(-3px); }
.cart-fab .count { background: var(--bloom); color: #3a2a08; border-radius: var(--r-full); min-width: 24px; height: 24px; display: grid; place-items: center; font-size: .82rem; }
.toast { position: fixed; left: 50%; bottom: 30px; transform: translateX(-50%) translateY(30px); background: var(--green-900); color: #fff; padding: 13px 22px; border-radius: var(--r-full); box-shadow: var(--sh-lg); opacity: 0; transition: .3s; z-index: 90; font-weight: 500; font-size: .95rem; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(120deg, var(--green-700), var(--green-800)); border-radius: var(--r-xl); padding: clamp(34px, 5vw, 60px); color: #fff; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content:""; position:absolute; inset:0; background: radial-gradient(60% 100% at 100% 0%, rgba(226,154,58,.3), transparent); }
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #dcece3; max-width: 560px; margin-inline: auto; }
.cta-band .btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }

/* ---------- Footer ---------- */
.footer { background: var(--green-900); color: #b9d2c4; padding: clamp(48px, 6vw, 76px) 0 30px; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; }
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; }
.footer a { color: #b9d2c4; font-size: .94rem; display: inline-block; padding: 4px 0; transition: color .15s; }
.footer a:hover { color: #fff; }
.footer__brand img { height: 96px; width: auto; margin-bottom: 16px; }
.footer__brand p { color: #9fbdad; font-size: .94rem; max-width: 320px; }
.footer__soc { display: flex; gap: 10px; margin-top: 16px; }
.footer__soc a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.1); display: grid; place-items: center; padding: 0; }
.footer__soc a:hover { background: var(--green-600); }
.footer__soc svg { width: 18px; height: 18px; }
.footer__contact p { font-size: .92rem; margin-bottom: 10px; color: #b9d2c4; }
.footer__contact b { color: #fff; font-family: var(--font-head); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 44px; padding-top: 22px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .84rem; color: #8fae9d; }
.footer__bottom a { font-size: .84rem; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- WhatsApp float ---------- */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 65; width: 58px; height: 58px; border-radius: 50%; background: #25d366; display: grid; place-items: center; box-shadow: 0 12px 28px rgba(37,211,102,.45); transition: transform .2s; }
.wa-float:hover { transform: scale(1.06); }
.wa-float svg { width: 30px; height: 30px; color: #fff; }

/* =========================================================
   Responsivo
   ========================================================= */
@media (max-width: 980px) {
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .cols-3 { grid-template-columns: repeat(2, 1fr); }
  .about__grid, .donate__grid, .contact__grid, .featured-post, .shop-layout { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .shop-filters { position: static; display: flex; flex-wrap: wrap; gap: 8px; }
  .shop-filters h4 { width: 100%; }
  .shop-filters .filter { width: auto; }
  .shop-filters .filter .count { display: none; }
  .featured-post__img { min-height: 240px; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .topbar .topbar__contact span:nth-child(2) { display: none; }
  /* backdrop-filter no header vira "containing block" p/ position:fixed
     e cortava o menu lateral na altura do header — desliga no mobile */
  .site-header { -webkit-backdrop-filter: none; backdrop-filter: none; background: rgba(250, 248, 242, .97); }
  .nav__menu {
    position: fixed; inset: 0 0 0 auto; width: min(340px, 86vw);
    background: #fff; flex-direction: column; align-items: stretch; gap: 2px;
    padding: 90px 18px 30px; transform: translateX(105%); transition: transform .3s ease;
    box-shadow: var(--sh-lg); overflow-y: auto; z-index: 55;
  }
  body.menu-open .nav__menu { transform: translateX(0); }
  .nav__menu > li { width: 100%; }
  .nav__link { width: 100%; justify-content: space-between; padding: 14px 16px; font-size: 1.02rem; }
  .nav__dd { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; border-left: 2px solid var(--green-100); border-radius: 0; margin: 2px 0 6px 16px; padding: 0; max-height: 0; overflow: hidden; transition: max-height .3s; }
  .nav__item.open .nav__dd { max-height: 420px; }
  .nav__actions .btn:not(.nav__toggle) { display: none; }
  .nav__toggle { display: block; }
  .menu-backdrop { position: fixed; inset: 0; background: rgba(16,53,42,.5); opacity: 0; visibility: hidden; transition: .3s; z-index: 54; }
  body.menu-open .menu-backdrop { opacity: 1; visibility: visible; }
  .cols-4, .cols-3, .cols-2 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .form .row { grid-template-columns: 1fr; }
  .hero__arrow { display: none; }
  .faq__a-inner ul { columns: 1; }
  .hero__inner { padding-block: 40px; }
  .video-embed { border-radius: var(--r-lg); }
  .support__grid { grid-template-columns: 1fr !important; }
  .gallery { grid-template-columns: repeat(2, 1fr) !important; }
}

/* =========================================================
   Componentes adicionais (revisão pós-reunião)
   ========================================================= */

/* ---------- Vídeo institucional ---------- */
.video-embed {
  position: relative; aspect-ratio: 16/9; width: 100%;
  border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-lg);
  background: var(--green-900) center/cover no-repeat;
  display: grid; place-items: center; border: 0;
}
.video-embed::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(16,53,42,.25), rgba(16,53,42,.6)); }
.video-embed__play {
  position: relative; z-index: 2; width: 84px; height: 84px; border-radius: 50%;
  background: rgba(255,255,255,.92); color: var(--green-700); display: grid; place-items: center;
  transition: transform .2s, background .2s; box-shadow: 0 10px 30px rgba(0,0,0,.3);
}
.video-embed:hover .video-embed__play { transform: scale(1.08); background: #fff; }
.video-embed__play svg { width: 34px; height: 34px; margin-left: 4px; }
.video-embed__label { position: absolute; z-index: 2; bottom: 22px; left: 24px; color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; text-shadow: 0 2px 8px rgba(0,0,0,.4); }

/* ---------- Seja um Apoiador ---------- */
.support__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 24px); }
.support-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px 24px; box-shadow: var(--sh-sm); transition: transform .2s, box-shadow .2s; display: flex; flex-direction: column; height: 100%; }
.support-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.support-card .card__icon { margin-bottom: 16px; }
.support-card h3 { font-size: 1.12rem; margin-bottom: .4em; }
.support-card p { font-size: .93rem; flex: 1; margin-bottom: 14px; }

/* ---------- Depoimentos ---------- */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 28px); }
.testimonial { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px 28px; box-shadow: var(--sh-sm); display: flex; flex-direction: column; position: relative; }
.testimonial::before { content: "\201C"; font-family: Georgia, serif; font-size: 5rem; line-height: 1; color: var(--green-100); position: absolute; top: 8px; right: 20px; }
.testimonial p { font-size: 1rem; color: var(--ink-soft); flex: 1; position: relative; z-index: 2; }
.testimonial__who { display: flex; align-items: center; gap: 13px; margin-top: 20px; }
.testimonial__avatar { width: 50px; height: 50px; border-radius: 50%; background: linear-gradient(135deg, var(--green-500), var(--leaf)); display: grid; place-items: center; color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; flex: none; }
.testimonial__who b { display: block; color: var(--green-900); font-family: var(--font-head); font-size: .98rem; }
.testimonial__who span { font-size: .85rem; color: var(--muted); }
.stars { color: var(--bloom); letter-spacing: 2px; margin-bottom: 12px; font-size: .95rem; }

/* ---------- Galeria institucional ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery a, .gallery div { border-radius: var(--r-md); overflow: hidden; aspect-ratio: 1/1; background: var(--green-100) center/cover no-repeat; box-shadow: var(--sh-sm); transition: transform .2s; }
.gallery a:hover { transform: scale(1.03); }
.gallery .tall { grid-row: span 2; aspect-ratio: 1/2; }

/* ---------- Missão / Visão / Valores ---------- */
.mvv { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 28px); }
.mvv .card__icon { background: #fdf1dd; color: var(--bloom-dark); }

/* ---------- Apadrinhamento (níveis) ---------- */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 26px); }
.tier { background: #fff; border: 1.5px solid var(--line); border-radius: var(--r-lg); padding: 30px 26px; box-shadow: var(--sh-sm); display: flex; flex-direction: column; text-align: center; transition: transform .2s, box-shadow .2s, border-color .2s; }
.tier:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.tier.featured { border-color: var(--bloom); box-shadow: var(--sh-md); position: relative; }
.tier.featured::before { content: "Mais escolhido"; position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--bloom); color: #3a2a08; font-family: var(--font-head); font-weight: 600; font-size: .74rem; padding: 5px 14px; border-radius: var(--r-full); white-space: nowrap; }
.tier__name { font-family: var(--font-head); font-weight: 600; color: var(--green-800); font-size: 1.05rem; }
.tier__price { font-family: var(--font-head); font-weight: 700; font-size: 2.2rem; color: var(--green-900); margin: 10px 0 2px; }
.tier__price small { font-size: .9rem; font-weight: 500; color: var(--muted); }
.tier ul { text-align: left; display: grid; gap: 10px; margin: 20px 0 24px; }
.tier ul li { display: flex; gap: 10px; align-items: flex-start; font-size: .93rem; color: var(--ink-soft); }
.tier ul li svg { flex: none; width: 18px; height: 18px; color: var(--green-500); margin-top: 3px; }
.tier .btn { margin-top: auto; }

/* ---------- Prescritório (faixa) ---------- */
.presc__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 60px); align-items: center; }
.presc__list { display: grid; gap: 14px; margin-top: 8px; }
.presc__list li { display: flex; gap: 12px; align-items: flex-start; color: #cfe3d7; }
.presc__list li svg { flex: none; width: 22px; height: 22px; color: var(--green-300); margin-top: 2px; }

@media (max-width: 980px) {
  .support__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials, .mvv, .tiers { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .presc__grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .support__grid { grid-template-columns: 1fr; }
}

/* =========================================================
   Menu: botão verde (item "Seja um Associado") + Cursos + Diretório
   ========================================================= */

/* Item de menu com aparência de botão verde (substitui o antigo botão de ação) */
.nav__link--cta { background: var(--green-700); color: #fff; }
.nav__link--cta .chev { color: #fff; }
.nav__link--cta:hover, .nav__item.open .nav__link--cta { background: var(--green-800); color: #fff; }

/* ---------- Cards de curso (landing /cursos) ---------- */
.course-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-sm); transition: transform .2s, box-shadow .2s; height: 100%; }
.course-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.course-card__top { padding: 26px; color: #fff; background: linear-gradient(135deg, var(--green-700), var(--green-800)); position: relative; }
.course-card__top.alt { background: linear-gradient(135deg, var(--green-600), var(--leaf-dark)); }
.course-card__top.bloom { background: linear-gradient(135deg, var(--bloom), var(--bloom-dark)); }
.course-card__ico { width: 52px; height: 52px; border-radius: 14px; background: rgba(255,255,255,.18); display: grid; place-items: center; margin-bottom: 14px; }
.course-card__ico svg { width: 28px; height: 28px; color: #fff; }
.course-card__top h3 { color: #fff; font-size: 1.25rem; margin: 0; }
.course-card__body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.course-card__body p { font-size: .95rem; flex: 1; }
.course-card__price { font-family: var(--font-head); font-weight: 700; color: var(--green-800); font-size: 1.6rem; margin: 6px 0 2px; }
.course-card__price small { font-size: .85rem; font-weight: 500; color: var(--muted); display: block; }
.course-card__body .btn { margin-top: 16px; }

/* ---------- Barra de benefícios do curso ---------- */
.course-benefits { display: flex; flex-wrap: wrap; gap: 12px 22px; margin: 24px 0; }
.course-benefits span { display: inline-flex; align-items: center; gap: 9px; font-weight: 500; color: var(--ink-soft); font-size: .96rem; }
.course-benefits svg { width: 20px; height: 20px; color: var(--green-600); flex: none; }

/* ---------- Módulos do curso ---------- */
.modules { display: grid; gap: 16px; }
.module { display: flex; gap: 20px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 24px; box-shadow: var(--sh-sm); }
.module__num { flex: none; width: 48px; height: 48px; border-radius: 14px; background: var(--green-50); color: var(--green-700); font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; display: grid; place-items: center; }
.module h3 { font-size: 1.12rem; margin: 0 0 4px; }
.module .who { font-size: .86rem; color: var(--leaf-dark); font-weight: 600; margin-bottom: 8px; }
.module p { font-size: .95rem; margin: 0; }

/* ---------- Preço destacado (hero de curso) ---------- */
.price-hero { display: inline-flex; align-items: baseline; gap: 12px; margin: 14px 0 6px; flex-wrap: wrap; }
.price-hero .old { color: #cfe3d7; text-decoration: line-through; font-size: 1.1rem; }
.price-hero .now { font-family: var(--font-head); font-weight: 700; color: #fff; font-size: 2.8rem; line-height: 1; }
.price-hero .split { color: #cfe3d7; font-size: .95rem; width: 100%; }

/* ---------- Diretório de prescritores (protótipo estático) ---------- */
.dir-filters { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
.dir-filters input, .dir-filters select { padding: 12px 16px; border: 1.5px solid var(--line); border-radius: var(--r-full); font-family: inherit; font-size: .94rem; background: #fff; color: var(--ink); }
.dir-filters input { flex: 1; min-width: 220px; }
.prof-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px; box-shadow: var(--sh-sm); transition: transform .2s, box-shadow .2s; position: relative; }
.prof-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.prof-card.featured { border-color: var(--bloom); box-shadow: 0 0 0 1px var(--bloom), var(--sh-sm); }
.prof-card__star { position: absolute; top: 14px; right: 14px; background: var(--bloom); color: #3a2a08; font-size: .7rem; font-weight: 700; padding: 4px 10px; border-radius: var(--r-full); }
.prof-card__head { display: flex; gap: 14px; align-items: center; margin-bottom: 14px; }
.prof-card__avatar { width: 66px; height: 66px; border-radius: 50%; background: linear-gradient(135deg, var(--green-500), var(--leaf)); display: grid; place-items: center; color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; flex: none; }
.prof-card__name { margin: 0; font-size: 1.12rem; color: var(--green-900); }
.prof-card__reg { margin: 3px 0 0; font-size: .86rem; color: var(--green-700); font-weight: 600; }
.prof-card__loc { margin: 4px 0 0; font-size: .84rem; color: var(--muted); }
.prof-card__actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }

/* ---------- Genéticas ---------- */
.gene-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.gene-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-sm); display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s; }
.gene-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.gene-card__top { padding: 20px 22px; color: #fff; }
.gene-card__top.cbd { background: linear-gradient(135deg, var(--green-600), var(--green-800)); }
.gene-card__top.thc { background: linear-gradient(135deg, var(--leaf-dark), #3f6f22); }
.gene-card__top.bal { background: linear-gradient(135deg, var(--bloom-dark), #a8681a); }
.gene-card__type { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; opacity: .92; }
.gene-card__top h3 { color: #fff; margin: 4px 0 0; font-size: 1.3rem; }
.gene-card__pheno { display: flex; gap: 10px; margin-top: 12px; font-size: .78rem; }
.gene-card__pheno span { background: rgba(255,255,255,.18); padding: 3px 11px; border-radius: 999px; }
.gene-card__body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.gene-cbn { display: flex; gap: 12px; margin-bottom: 16px; }
.gene-cbn div { flex: 1; background: var(--green-50); border-radius: 12px; padding: 11px 8px; text-align: center; }
.gene-cbn b { display: block; font-family: var(--font-head); font-size: 1.35rem; color: var(--green-800); line-height: 1; }
.gene-cbn span { font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.gene-row { font-size: .88rem; margin: 0 0 7px; color: var(--ink-soft); }
.gene-row b { color: var(--green-900); font-family: var(--font-head); font-weight: 600; }
.gene-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; padding-top: 12px; }
.gene-chips span { background: var(--green-50); color: var(--green-800); font-size: .76rem; font-weight: 500; padding: 4px 10px; border-radius: 999px; }
.conc-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.conc-chips span { background: #fff; border: 1.5px solid var(--green-300); color: var(--green-800); font-weight: 600; font-size: .85rem; padding: 6px 13px; border-radius: 999px; }
.note-box { background: var(--green-50); border: 1px solid var(--green-100); border-radius: var(--r-md); padding: 18px 22px; color: var(--ink-soft); font-size: .92rem; }
.note-box strong { color: var(--green-900); }
.af-list { margin: 10px 0 14px; display: grid; gap: 7px; }
.af-list li { position: relative; padding-left: 20px; font-size: .94rem; color: var(--ink-soft); }
.af-list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 7px; height: 7px; border-radius: 50%; background: var(--leaf); }
.product__img.noimg::after { content: "🛍️"; font-size: 60px; opacity: .5; }

/* =========================================================
   Depoimentos — carrossel horizontal (vídeo + texto)
   ========================================================= */
.testi-slider { position: relative; }
.testi-track {
  display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 6px 4px 22px; scroll-behavior: smooth;
  -ms-overflow-style: none; scrollbar-width: none;
}
.testi-track::-webkit-scrollbar { display: none; }
.testi-track { cursor: grab; }
.testi-track.dragging { cursor: grabbing; scroll-behavior: auto; scroll-snap-type: none; }
.testi-track.dragging * { pointer-events: none; }
.testi-card {
  flex: 0 0 330px; scroll-snap-align: start; background: #fff;
  border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-sm); display: flex; flex-direction: column; transition: box-shadow .2s, transform .2s;
}
.testi-card:hover { box-shadow: var(--sh-md); }
.testi-card__video {
  position: relative; aspect-ratio: 4/3; background: var(--green-800) center/cover no-repeat; cursor: pointer;
}
.testi-card__video::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(16,53,42,.15), rgba(16,53,42,.55)); transition: background .2s; }
.testi-card__video:hover::after { background: linear-gradient(180deg, rgba(16,53,42,.25), rgba(16,53,42,.6)); }
.testi-play {
  position: absolute; z-index: 2; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 60px; height: 60px; border-radius: 50%; background: rgba(255,255,255,.92); color: var(--green-700);
  display: grid; place-items: center; box-shadow: 0 8px 22px rgba(0,0,0,.3); transition: transform .2s;
}
.testi-card__video:hover .testi-play { transform: translate(-50%,-50%) scale(1.1); }
.testi-play svg { width: 24px; height: 24px; margin-left: 3px; }
.testi-label { position: absolute; z-index: 2; top: 12px; left: 12px; background: rgba(255,255,255,.92); color: var(--green-800); font-size: .72rem; font-weight: 600; padding: 4px 10px; border-radius: var(--r-full); }
.testi-badge { position: absolute; z-index: 2; bottom: 12px; left: 12px; background: rgba(16,53,42,.72); color: #fff; font-size: .74rem; font-weight: 600; padding: 4px 10px; border-radius: var(--r-full); display: inline-flex; align-items: center; gap: 5px; }
.testi-card__body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.testi-card__body .stars { color: var(--bloom); letter-spacing: 2px; margin-bottom: 10px; font-size: .95rem; }
.testi-quote { font-size: .96rem; color: var(--ink-soft); line-height: 1.6; flex: 1; margin: 0 0 18px; }
.testi-who { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--green-500), var(--leaf)); display: grid; place-items: center; color: #fff; font-family: var(--font-head); font-weight: 700; flex: none; }
.testi-who b { display: block; color: var(--green-900); font-family: var(--font-head); font-size: .96rem; }
.testi-who span { font-size: .82rem; color: var(--muted); }

/* card só de texto */
.testi-card--text .testi-card__body { padding-top: 26px; }
.testi-card--text .testi-bigquote { font-family: Georgia, serif; font-size: 3.4rem; line-height: .6; color: var(--green-200, #b8e0c8); margin-bottom: 10px; }

/* setas */
.testi-arrow {
  position: absolute; z-index: 5; top: 38%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%; background: #fff; color: var(--green-800);
  border: 1px solid var(--line); box-shadow: var(--sh-md); display: grid; place-items: center; transition: .18s;
}
.testi-arrow:hover { background: var(--green-700); color: #fff; }
.testi-arrow svg { width: 22px; height: 22px; }
.testi-arrow.prev { left: -10px; } .testi-arrow.next { right: -10px; }

/* modal de vídeo */
.testi-modal { position: fixed; inset: 0; z-index: 200; display: none; }
.testi-modal.open { display: block; }
.testi-modal__backdrop { position: absolute; inset: 0; background: rgba(10,25,18,.82); backdrop-filter: blur(3px); }
.testi-modal__box { position: absolute; z-index: 2; top: 50%; left: 50%; transform: translate(-50%,-50%); width: min(880px, 92vw); }
.testi-modal__video { position: relative; aspect-ratio: 16/9; background: #000; border-radius: var(--r-md); overflow: hidden; box-shadow: var(--sh-lg); }
.testi-modal.ig .testi-modal__box { width: min(400px, 92vw); }
.testi-modal.ig .testi-modal__video { aspect-ratio: 9/16; background: #fff; }
.testi-ig-badge { position: absolute; z-index: 2; top: 12px; left: 12px; background: linear-gradient(45deg,#f58529,#dd2a7b,#8134af); color: #fff; font-size: .72rem; font-weight: 700; padding: 4px 11px; border-radius: var(--r-full); }
.testi-modal__video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.testi-modal__ph { position: absolute; inset: 0; display: grid; place-content: center; text-align: center; color: #cfe3d7; font-family: var(--font-head); gap: 6px; line-height: 1.5; }
.testi-modal__ph small { color: #8fae9d; font-weight: 400; }
.testi-modal__close { position: absolute; top: -46px; right: 0; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.16); color: #fff; font-size: 1.1rem; }
.testi-modal__yt { position: absolute; top: -40px; left: 2px; color: #fff; font-family: var(--font-head); font-weight: 600; font-size: .9rem; text-decoration: none; opacity: .92; }
.testi-modal__yt:hover { opacity: 1; text-decoration: underline; }
.testi-modal__close:hover { background: rgba(255,255,255,.28); }

@media (max-width: 760px) {
  .testi-arrow { display: none; }
  .testi-card { flex-basis: 82vw; }
}

/* =========================================================
   UX mobile-first
   ========================================================= */
:target { scroll-margin-top: 88px; }
h1, h2, h3 { overflow-wrap: break-word; }

/* Barra de ação fixa (mobile) — injetada em todas as páginas */
.m-actionbar { display: none; }
.m-actionbar a { text-decoration: none; }
@media (max-width: 760px) {
  .m-actionbar {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 62;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(250,248,242,.97); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
    border-top: 1px solid var(--line); box-shadow: 0 -6px 20px rgba(3,36,20,.10);
  }
  .m-actionbar a { display: flex; align-items: center; justify-content: center; gap: 7px; height: 48px; border-radius: var(--r-full); font-family: var(--font-head); font-weight: 600; font-size: 1rem; }
  .m-actionbar__assoc { background: var(--green-700); color: #fff; }
  .m-actionbar__wa { background: #25d366; color: #06331c; }
  .wa-float { display: none; }
  body { padding-bottom: 74px; }
  /* tipografia mobile mais compacta para o display Unbounded */
  h1 { letter-spacing: -.02em; }
  .hero h1 { font-size: clamp(1.9rem, 8vw, 2.6rem); }
  .section { padding: 46px 0; }
}
@media (max-width: 900px) { .gene-grid { grid-template-columns: 1fr; } }

/* ============ PERFORMANCE / CROSS-DEVICE ============ */
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
a, button { -webkit-tap-highlight-color: transparent; }
img, video { max-width: 100%; }
.site-footer { content-visibility: auto; contain-intrinsic-size: auto 620px; }
@media (hover: none) {
  .card:hover, .btn:hover { transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* cards alinhados em grids */
.grid { align-items: stretch; }
.grid > .card { display: flex; flex-direction: column; height: 100%; }
.grid > .card p:last-child { margin-bottom: 0; }

/* =========================================================
   Compatibilidade WordPress
   ========================================================= */
body.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { body.admin-bar .site-header { top: 46px; } }

/* Conteúdo do editor (the_content) */
.post-body > * + * { margin-top: 18px; }
.post-body h2 { font-family: var(--font-head); font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin-top: 36px; color: var(--green-800); }
.post-body h3 { font-family: var(--font-head); font-size: 1.2rem; margin-top: 28px; color: var(--green-800); }
.post-body p, .post-body li { color: var(--ink-soft); line-height: 1.75; }
.post-body ul, .post-body ol { padding-left: 22px; display: grid; gap: 8px; }
.post-body ul { list-style: disc; }
.post-body ol { list-style: decimal; }
.post-body img { max-width: 100%; height: auto; border-radius: var(--r-md); }
.post-body blockquote { border-left: 3px solid var(--leaf); padding: 6px 0 6px 18px; color: var(--ink); font-style: italic; }
.post-body a { color: var(--green-700); text-decoration: underline; }

/* Blocos e alinhamentos do Gutenberg */
.alignwide { max-width: 1100px; margin-inline: auto; }
.alignfull { max-width: none; }
.aligncenter { display: block; margin-inline: auto; }
.alignleft { float: left; margin: 0 22px 16px 0; }
.alignright { float: right; margin: 0 0 16px 22px; }
.wp-caption { max-width: 100%; }
.wp-caption-text, figcaption { font-size: .86rem; color: var(--muted); margin-top: 8px; text-align: center; }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); white-space: nowrap; }

/* Paginação */
.nav-links { display: inline-flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.nav-links .page-numbers {
  min-width: 42px; height: 42px; display: grid; place-items: center; padding: 0 12px;
  border: 1px solid var(--line); border-radius: var(--r-full); background: #fff;
  font-family: var(--font-head); font-weight: 600; color: var(--ink); font-size: .92rem;
}
.nav-links .page-numbers.current, .nav-links .page-numbers:hover { background: var(--green-700); border-color: var(--green-700); color: #fff; }

/* Logo enviada pelo WordPress (Personalizar → Identidade) */
.nav__logo .custom-logo { height: 46px; width: auto; }
