/* ========= FONTS =========
   Helvetica Neue é fonte de sistema (Apple); cai para Arial em Windows/Android.
   Elza Condensed (títulos) e Register (serifa) são proprietárias: dropar os .woff2
   em assets/fonts/ e descomentar os @font-face abaixo quando os arquivos chegarem. */

/*
@font-face {
  font-family: 'Elza Condensed';
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/ElzaCondensed-Bold.woff2') format('woff2');
}
@font-face {
  font-family: 'Register';
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/Register-Regular.woff2') format('woff2');
}
*/

/* ========================================================================
   MOBILE-FIRST: os estilos-base descrevem o layout mobile (1 coluna).
   Os blocos @media (min-width: …) progressivamente ativam tablet e desktop.
   ======================================================================== */

/* ========= TOKENS ========= */
:root {
  --bg: #f1f1f1;          /* off white */
  --bg-2: #ffffff;        /* seções claras / cards */
  --bg-3: #fbfbfb;
  --border: #e2e2e2;
  --fg: #303132;          /* preto */
  --fg-muted: #5a5b5c;
  --fg-dim: #8a8b8c;
  --accent: #ff6f00;      /* laranja Dons */
  --accent-2: #e35f00;
  --accent-soft: rgba(255, 111, 0, .08);
  --radius: 16px;
  --radius-sm: 10px;
  --container: 1200px;
  --pad: clamp(1rem, 3vw, 2rem);
  --gap: clamp(1rem, 2.5vw, 2rem);

  --f-sans: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --f-display: 'Elza Condensed', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --f-serif: 'Register', Georgia, 'Times New Roman', serif;
}

/* ========= RESET ========= */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  padding-top: 34px;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { margin: 0; line-height: 1.12; font-weight: 700; }
p { margin: 0 0 1em; color: var(--fg-muted); font-weight: 400; }
p b, p strong, .lede b, .lede strong, .hero__sub b, .hero__sub strong { color: var(--fg); font-weight: 700; }
ul { margin: 0; padding: 0; list-style: none; }
em { font-style: italic; color: var(--accent); }

/* ========= LAYOUT ========= */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.center { text-align: center; }
.eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.eyebrow--center { display: block; text-align: center; }
.display {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  line-height: 1.1;
  letter-spacing: .005em;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 1rem;
}
.display em { font-style: normal; color: var(--accent); }
.lede {
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  color: var(--fg-muted);
  max-width: 64ch;
  margin-inline: auto;
  margin-bottom: 2rem;
}

/* ========= BUTTONS (base = mobile) ========= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .85rem;
  padding: 1.15rem 1.6rem 1.15rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  white-space: normal;
  transition: transform .15s ease, box-shadow .2s ease, background .15s ease;
  cursor: pointer;
  text-align: center;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  box-shadow:
    0 10px 24px -10px rgba(255, 111, 0, .65),
    0 4px 10px -4px rgba(255, 111, 0, .4);
}
.btn::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #fff;
  flex: 0 0 auto;
}
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-2); transform: translateY(-1px); }
.btn:hover {
  box-shadow:
    0 14px 30px -10px rgba(255, 111, 0, .7),
    0 6px 14px -4px rgba(255, 111, 0, .5);
}
.btn--ghost {
  background: var(--fg);
  color: #fff;
  width: 100%;
  max-width: 360px;
  box-shadow: 0 10px 24px -12px rgba(48, 49, 50, .6);
}
.btn--ghost::before { background: var(--accent); }
.btn--ghost:hover { background: #1f2021; transform: translateY(-1px); }
.btn--lg { padding: 1.2rem 2.5rem 1.2rem 1.5rem; font-size: .88rem; }

@media (min-width: 820px) {
  .btn { padding: 1.05rem 2.1rem 1.05rem 1.35rem; font-size: .82rem; white-space: nowrap; }
  .btn--ghost { width: auto; max-width: none; }
}

/* ========= MARQUEE ========= */
.marquee {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  overflow: hidden;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .14em;
  padding: .6rem 0;
  height: 34px;
}
.marquee__track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: scroll 40s linear infinite;
  width: max-content;
}
@keyframes scroll { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ========= HERO (fluido via clamp) ========= */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(60% 45% at 50% 0%, var(--accent-soft), transparent 70%),
    var(--bg);
  border-bottom: 1px solid var(--border);
}
.hero__inner {
  padding-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(3rem, 7vw, 5rem);
  text-align: center;
  max-width: 1000px;
  margin-inline: auto;
  width: 100%;
}
.hero__brand { display: flex; justify-content: center; margin-bottom: 1.75rem; }
.hero__brand-mark { height: clamp(40px, 5vw, 56px); width: auto; }
.hero__eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 999px;
  padding: .4rem 1rem;
  margin-bottom: 1.5rem;
}
.hero__title {
  font-family: var(--f-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1.04;
  letter-spacing: .005em;
  margin-bottom: 1.5rem;
}
.hero__title em { font-style: normal; color: var(--accent); }
.hero__sub {
  max-width: 64ch;
  margin: 0 auto 2.25rem;
  color: var(--fg-muted);
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  line-height: 1.6;
}
.hero__photo {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 60px -32px rgba(0,0,0,.35);
}
.hero__photo img { width: 100%; display: block; }

/* ========= PLACEHOLDER DE IMAGEM (trocar por .webp quando chegar) ========= */
.ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  text-align: center;
  background: #ececec;
  color: #9a9a9a;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 1rem;
  border: 1px dashed #cfcfcf;
  border-radius: 12px;
}
.ph::before {
  content: "";
  width: 32px;
  height: 32px;
  background: #bdbdbd;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E") center / contain no-repeat;
}
.ph--hero { aspect-ratio: 16 / 9; border-radius: var(--radius); }
.ph--portrait { aspect-ratio: 3 / 4; border-radius: 12px; }
.ph--avatar { width: 48px; height: 48px; border-radius: 999px; font-size: .6rem; flex: 0 0 auto; }
@media (min-width: 640px) { .ph--hero { aspect-ratio: 16 / 8; } }

/* ========= DIVISOR ========= */
.divisor {
  display: block;
  width: 180px;
  max-width: 55%;
  height: auto;
  margin: 0 auto 2rem;
  opacity: .9;
}

/* ========= PROBLEMA (lâmina 2) ========= */
.section--problema { background: var(--bg-2); }
.problema { max-width: 760px; margin-inline: auto; text-align: center; }
.problema .display { margin-inline: auto; }
.problema p { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--fg-muted); margin-bottom: 1.25rem; }

/* ========= PARA QUEM / O QUE APRENDE — listas com check ========= */
.section--para-quem { background: var(--bg); }
.section--aprende { background: var(--bg-2); }
.check-list {
  display: grid;
  grid-template-columns: 1fr;     /* base mobile: 1 coluna */
  gap: .85rem;
  max-width: 760px;
  margin: 2.5rem auto 0;
}
.check-list--2 { max-width: 900px; }
.check-list li {
  position: relative;
  padding: 1rem 1.25rem 1rem 3rem;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--fg);
  font-size: .98rem;
  line-height: 1.45;
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--accent)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E")
    center / 12px no-repeat;
}
@media (min-width: 720px) {
  .check-list--2 { grid-template-columns: repeat(2, 1fr); }
}

/* ========= PIRÂMIDE DE PÚBLICOS (lâmina 3) ========= */
.piramide {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .7rem;
  max-width: 760px;
  margin: 2.5rem auto 0;
}
.piramide__row {
  display: flex;
  gap: .7rem;
  justify-content: center;
  width: 100%;
}
.piramide__row--1 { max-width: 62%; }
.piramide__row--2 { max-width: 84%; }
.piramide__row--3 { max-width: 100%; }
.alvo {
  flex: 1 1 0;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-bottom: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 1rem .85rem;
  text-align: center;
  font-weight: 600;
  color: var(--fg);
  font-size: .9rem;
  line-height: 1.3;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 640px) {
  .piramide { gap: 1rem; }
  .piramide__row { gap: 1rem; }
  .piramide__row--1 { max-width: 44%; }
  .piramide__row--2 { max-width: 72%; }
  .alvo { padding: 1.5rem 1.25rem; font-size: 1rem; }
}

/* ========= MANIFESTO (muito além da polêmica) ========= */
.section--alem { background: var(--bg); }
.alem { max-width: 780px; margin-inline: auto; text-align: center; }
.alem p { font-size: 1.05rem; margin-bottom: 1.25rem; }

/* ========= MÓDULOS (lâmina 6) ========= */
.section--modulos { background: var(--bg-2); }
.modulo-grid {
  display: grid;
  grid-template-columns: 1fr;     /* base mobile */
  gap: var(--gap);
  margin-top: 3rem;
}
.modulo {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-top: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 2rem;
}
.modulo__num {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
}
.modulo h3 {
  font-family: var(--f-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  margin: .35rem 0 1.25rem;
  letter-spacing: .01em;
}
.modulo ul li {
  padding: .6rem 0 .6rem 1.4rem;
  position: relative;
  border-bottom: 1px solid var(--border);
  color: var(--fg-muted);
  font-size: .95rem;
}
.modulo ul li:last-child { border-bottom: 0; }
.modulo ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 1.05rem;
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--accent);
}
@media (min-width: 760px) {
  .modulo-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ========= ACESSO (4 pilares — lâmina 7) ========= */
.section--acesso { background: var(--bg); }
.pilar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--gap);
  margin-top: 3rem;
}
.pilar {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: left;
}
.pilar h3 {
  font-family: var(--f-display);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent);
  font-size: 1.4rem;
  margin-bottom: .75rem;
}
.pilar p { font-size: .95rem; color: var(--fg-muted); margin: 0; }

/* ========= PRICE / CHECKOUT (lâmina 8) ========= */
.section--price { background: var(--bg-2); }
.price {
  display: grid;
  grid-template-columns: 1fr;     /* base mobile */
  gap: calc(var(--gap) * 2);
}
.price__left {
  background: var(--fg);
  color: #fff;
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 3rem);
  text-align: center;
  align-self: start;
}
.price__left .eyebrow { color: var(--accent); }
.price__left .display { color: #fff; }
.price__big { margin: 1.25rem 0 .5rem; line-height: 1; }
.price__big em {
  font-family: var(--f-display);
  font-style: normal;
  font-weight: 700;
  font-size: clamp(2.5rem, 7vw, 4.25rem);
  color: var(--accent);
  display: inline-block;
}
.price__small { margin-bottom: 2rem; font-size: .95rem; color: #cfcfcf; }
.price__small strong { color: #fff; font-weight: 700; }
.price__right h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.checklist li {
  position: relative;
  padding: .65rem 0 .65rem 1.9rem;
  border-bottom: 1px solid var(--border);
  color: var(--fg);
  font-size: .95rem;
}
.checklist li:last-child { border-bottom: 0; }
.checklist li::before {
  content: '';
  position: absolute;
  left: 0; top: .85rem;
  width: 16px; height: 16px;
  border-radius: 999px;
  background: var(--accent)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E")
    center / 11px no-repeat;
}
@media (min-width: 820px) {
  .price { grid-template-columns: 1fr 1fr; }
}

/* ========= GARANTIA ========= */
.guarantee {
  margin-top: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  background: var(--bg-3);
}
.guarantee h4 { font-size: 1.15rem; font-weight: 700; margin-bottom: .75rem; }
.guarantee h4 span { color: var(--accent); }
.guarantee p { font-size: .92rem; line-height: 1.6; margin: 0; }
.guarantee em { font-style: normal; color: var(--accent); font-weight: 700; }
.section--garantia { background: var(--bg); }
.garantia-card { max-width: 760px; margin-inline: auto; }
.garantia-card .guarantee { margin-top: 0; background: var(--bg-2); border-color: var(--accent); }

/* ========= PROFESSORES ========= */
.section--professores { background: var(--bg-2); }
.professor-grid {
  display: grid;
  grid-template-columns: 1fr;     /* base mobile */
  gap: calc(var(--gap) * 1.25);
  margin-top: 3.5rem;
}
.professor {
  display: grid;
  grid-template-columns: 1fr;     /* base mobile: foto em cima, texto embaixo */
  gap: 1.25rem;
  align-items: start;
  justify-items: center;          /* mobile: foto centralizada */
  text-align: center;             /* mobile: nome e descrição centralizados */
}
.professor__photo,
.professor .ph--portrait { width: 160px; margin: 0; border-radius: 12px; }
.professor .ph--portrait { aspect-ratio: 3 / 4; }
.professor__photo img { border-radius: 12px; width: 100%; display: block; }
.professor h3 {
  font-family: var(--f-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: .75rem;
}
.professor p { font-size: .9rem; line-height: 1.6; color: var(--fg-muted); margin: 0; }
@media (min-width: 480px) {
  .professor { grid-template-columns: 150px 1fr; gap: 1.5rem; justify-items: stretch; text-align: left; }
  .professor__photo, .professor .ph--portrait { width: 150px; }
}
@media (min-width: 900px) {
  .professor-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ========= DEPOIMENTOS ========= */
.section--depoimentos { background: var(--bg); }
.depoimento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--gap);
  margin: 3rem 0;
}
.depoimento {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-bottom: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 2rem;
  margin: 0;
}
.depoimento h3 {
  font-family: var(--f-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.2rem;
  color: var(--fg);
  margin-bottom: 1rem;
  line-height: 1.25;
}
.depoimento p { font-size: .95rem; line-height: 1.6; }
.depoimento__author {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.depoimento__avatar { width: 48px; height: 48px; border-radius: 999px; object-fit: cover; flex: 0 0 auto; }
.depoimento cite { font-style: normal; font-weight: 700; color: var(--fg); font-size: .95rem; }

/* ========= BANNER PILL ========= */
.banner-pill {
  display: block;
  width: 100%;
  max-width: 760px;
  margin: 2rem auto 0;
  background: var(--accent);
  color: #fff;
  padding: 1.1rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.5;
}

/* ========= FAQ ========= */
.section--faq { background: var(--bg-2); }
.faq { max-width: 860px; margin: 0 auto; }
.faq .display { margin-bottom: 2.5rem; }
.faq details {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: .75rem;
  overflow: hidden;
  transition: border-color .2s ease;
}
.faq details[open] { border-color: var(--accent); }
.faq summary {
  padding: 1.25rem 1.75rem;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--accent);
  transition: transform .25s ease;
  font-weight: 300;
  flex: 0 0 auto;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 1.75rem 1.25rem; margin: 0; font-size: .95rem; line-height: 1.6; }

/* ========= WHATSAPP CTA ========= */
.section--whatsapp { background: var(--accent); color: #fff; text-align: center; }
.section--whatsapp .display { color: #fff; }
.section--whatsapp p { color: rgba(255,255,255,.92); font-size: 1.1rem; max-width: 48ch; margin: 0 auto 2rem; }
.btn--wpp { background: #fff; color: var(--accent); box-shadow: 0 12px 28px -12px rgba(0,0,0,.4); }
.btn--wpp::before { background: var(--accent); }
.btn--wpp:hover { background: #f3f3f3; transform: translateY(-1px); }

/* ========= FOOTER ========= */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 3rem 0;
  text-align: center;
}
.footer p { margin: .25rem 0; font-size: .85rem; color: var(--fg-dim); }
.footer strong { color: var(--fg-muted); font-weight: 700; }

/* ========= LÂMINA 2 — A POLÊMICA (Confronto VS) ========= */
.poli { max-width: 880px; margin-inline: auto; text-align: center; }
.poli-duelo {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2.5rem 0 1.5rem;
}
.poli-lado {
  flex: 1;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-top: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  min-height: 8.5rem;            /* trava os dois cards na mesma altura, independente da quebra de linha */
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.poli-lado h3 {
  font-family: var(--f-display);
  text-transform: uppercase;
  color: var(--accent);
  font-size: 1.4rem;
  margin-bottom: .5rem;
}
.poli-lado p { margin: 0; color: var(--fg); }
.poli-selo {
  align-self: center;
  background: var(--fg);
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .08em;
  width: 48px; height: 48px;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  flex: 0 0 auto;
  box-shadow: 0 6px 16px -6px rgba(0,0,0,.4);
}
.poli-faixa {
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  font-size: 1.05rem;
  margin: 0 0 2rem;
}
.poli-faixa b { color: #fff; }
@media (min-width: 720px) {
  .poli-duelo { flex-direction: row; align-items: stretch; }
}

/* Layout alternativo: visões lado a lado em qualquer largura (inclusive celular) */
.poli--lado .poli-duelo {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;            /* os dois cards ficam com a mesma altura, mais encorpados */
  gap: .5rem;
  margin: 2rem 0 1.25rem;
}
.poli--lado .poli-lado {
  padding: 1.6rem .9rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.poli--lado .poli-lado h3 { font-size: 1.05rem; margin-bottom: .4rem; }
.poli--lado .poli-lado p { font-size: .85rem; line-height: 1.35; }
.poli--lado .poli-selo { width: 38px; height: 38px; font-size: .72rem; }
.poli--lado .poli-faixa { font-size: .9rem; padding: .95rem 1.2rem; }   /* menos dominante que os cards no celular */
@media (min-width: 720px) {
  .poli--lado .poli-duelo { gap: 1rem; }
  .poli--lado .poli-lado { padding: 1.75rem 1.5rem; }
  .poli--lado .poli-lado h3 { font-size: 1.4rem; }
  .poli--lado .poli-lado p { font-size: 1rem; }
  .poli--lado .poli-selo { width: 48px; height: 48px; font-size: .9rem; }
  .poli--lado .poli-faixa { font-size: 1.05rem; padding: 1.25rem 1.5rem; }
}

/* Switcher flutuante (PROVISÓRIO: remover ao escolher o layout) */
.proto-switch {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 60;
  display: flex;
  align-items: center;
  gap: .3rem;
  background: var(--fg);
  color: #fff;
  padding: .35rem .4rem;
  border-radius: 999px;
  box-shadow: 0 10px 30px -8px rgba(0,0,0,.5);
  font-size: .78rem;
}
.proto-switch__lbl {
  display: none;
  font-weight: 700;
  opacity: .7;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 0 .25rem 0 .5rem;
}
.proto-switch button {
  border: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  font-weight: 700;
  padding: .4rem .8rem;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
}
.proto-switch button.is-active { background: var(--accent); }
@media (min-width: 520px) {
  .proto-switch { gap: .35rem; padding: .4rem .5rem; }
  .proto-switch__lbl { display: inline; }
}
