/* =====================================================================
   DESIGN 1 — "Página de vendas direta" (ref.: materialpsicopedagogico.com.br, capturado 17/09/2026)
   Mobile-first, sem dependências. Fonte = pilha do sistema (Segoe UI / SF / Roboto) em 800–900.
   ===================================================================== */
:root {
  /* base */
  --bg: #fdfcf8;            /* creme quase branco (fundo da página) */
  --fg: #071727;            /* texto principal azul-marinho quase preto */
  --ink: #09090b;           /* H1 */
  --muted: #495766;         /* textos de apoio */
  --list: #374151;          /* itens de lista nas ofertas */
  --border: #e0e5eb;
  --line: #eef0f3;          /* divisória entre itens da oferta */
  --card: #ffffff;
  --beige: #f4f2ea;         /* seção "veja por dentro" */
  --beige-2: #f3f1ec;       /* seção de bônus */
  /* escuros */
  --navy: #061c31;          /* seções escuras + rodapé */
  --navy-offer: #172538;    /* seção de preço */
  --navy-pill: #0b1730;     /* selo "BÔNUS 01" */
  --navy-title: #162235;
  /* verdes (ação) */
  --green: #3db44a;         /* CTA principal (accent) */
  --green-dark: #1e9343;    /* CTA dentro da oferta, textos "✓" */
  --green-chip: #22c55e;    /* chip do hero */
  --green-price: #08a84f;   /* preço/ícones check */
  --green-soft: #e6f7ec;
  --green-soft-2: #e6f7ee;
  --green-line: #b9e3c7;
  --lime: #79ff2f;          /* borda do plano completo */
  /* vermelhos (urgência) */
  --red: #e62d28;           /* barra de urgência */
  --red-deep: #8e1814;
  --red-section: #e33835;   /* faixa "SUPER BÔNUS" */
  --red-pill: #ef3f37;      /* selos "MAIS VENDIDO", "ANTES" */
  --red-text: #d83a3a;
  --red-strong: #d12626;
  --red-soft: #fdecec;
  --red-line: #f6c8c8;
  --orange-word: #e8542f;   /* palavra destacada em H2 claro */
  --gold: #cbae60;          /* faixa "PLANO COMPLETO" e palavras douradas */
  --yellow: #ffd43b;        /* textos amarelos na faixa vermelha */
  --gray-price: #5b6573;
  --gray-border: #b7bdc7;

  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif,
          "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji";

  --r-sm: 8px;  --r: 10px;  --r-xl: 14px;  --r-2xl: 18px;  --r-pill: 999px;
  --sh-sm: 0 1px 3px rgba(0,0,0,.1), 0 1px 2px -1px rgba(0,0,0,.1);
  --sh-md: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -2px rgba(0,0,0,.1);
  --sh-lg: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1);
  --sh-2xl: 0 25px 50px -12px rgba(0,0,0,.25);
  --sh-offer: 0 18px 36px rgba(0,0,0,.22);
  --sh-cta: 0 10px 25px -5px rgba(61,180,74,.45);

  --w-text: 768px; --w-grid: 1024px; --w-wide: 1152px; --w-offer: 672px; --w-faq: 736px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--bg); color: var(--ink); font-family: var(--font); font-size: 16px; line-height: 1.5; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ---------- layout ---------- */
.sec { padding: 64px 16px; }
.sec--tight { padding: 48px 16px; }
.sec--beige { background: var(--beige); }
.sec--beige2 { background: var(--beige-2); }
.sec--navy { background: var(--navy); color: #fdfcf8; }
.sec--offer { background: var(--navy-offer); color: #fff; }
.wrap { max-width: var(--w-text); margin: 0 auto; }
.wrap--grid { max-width: var(--w-grid); margin: 0 auto; }
.wrap--wide { max-width: var(--w-wide); margin: 0 auto; }
.wrap--offer { max-width: var(--w-offer); margin: 0 auto; }
.wrap--faq { max-width: var(--w-faq); margin: 0 auto; }
.center { text-align: center; }
.grid-2 { display: grid; gap: 16px; }
.grid-4 { display: grid; gap: 20px; }
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; gap: 16px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* ---------- tipografia ---------- */
.h1 { font-size: 30px; line-height: 1.25; font-weight: 900; letter-spacing: -.025em; text-transform: uppercase; color: var(--ink); margin: 0; }
.h2 { font-size: 24px; line-height: 1.33; font-weight: 900; letter-spacing: -.025em; text-transform: uppercase; margin: 0 0 12px; }
.h2--plain { text-transform: none; font-weight: 800; color: #0b0b0b; }
.h2--faq { text-transform: none; font-weight: 700; }
.h3 { font-size: 16px; line-height: 1.5; font-weight: 800; letter-spacing: -.025em; text-transform: uppercase; margin: 0 0 8px; color: #101c28; }
.h3--card { font-size: 18px; text-transform: none; letter-spacing: 0; color: var(--navy-pill); line-height: 1.375; }
.lead { font-size: 16px; line-height: 1.625; color: var(--fg); }
.sub { font-size: 14px; line-height: 1.45; color: var(--muted); margin: 0 auto 24px; max-width: 640px; }
.sec--navy .sub { color: #dfe5ec; }
.small { font-size: 14px; line-height: 1.45; color: var(--muted); }
.hl-green { color: var(--green); }
.hl-orange { color: var(--orange-word); }
.hl-gold { color: var(--gold); }
.u-green { text-decoration: underline; text-decoration-color: var(--green); text-decoration-thickness: 3px; text-underline-offset: 6px; color: var(--green); }
.u-dark { text-decoration: underline; text-decoration-color: var(--green-dark); text-decoration-thickness: 3px; text-underline-offset: 8px; }
.strike { text-decoration: line-through; }
@media (min-width: 768px) {
  .h1 { font-size: 48px; line-height: 1.25; }
  .h2 { font-size: 36px; line-height: 1.12; }
  .lead { font-size: 18px; line-height: 1.625; }
}

/* ---------- barra de urgência (sticky + brilho) ---------- */
.urgency { position: sticky; top: 0; z-index: 40; color: #fdfcf8; text-align: center; font-weight: 600; font-size: 14px;
  text-transform: uppercase; padding: 12px 16px; background: linear-gradient(90deg, var(--red), var(--red-deep), var(--red));
  background-size: 200% 100%; animation: d1-shine 4s linear infinite; }
@media (min-width: 768px) { .urgency { font-size: 16px; } }

/* ---------- botões ---------- */
.btn { display: inline-block; text-decoration: none; text-align: center; border: 0; cursor: pointer; font-family: var(--font);
  background: var(--green); color: #fdfcf8; font-weight: 700; font-size: 16px; text-transform: uppercase; line-height: 1.5;
  padding: 16px 32px; border-radius: var(--r); transition: transform .25s, box-shadow .25s; }
.btn:hover { background: #37a243; }
.btn--pulse { animation: d1-pulse 2.2s ease-in-out infinite; box-shadow: var(--sh-cta); }
.btn--hero { padding: 12px 32px; max-width: 340px; }
@media (min-width: 768px) { .btn--hero { font-size: 18px; } }
.btn--offer { display: block; width: 100%; background: var(--green-dark); color: #fff; font-weight: 900; font-size: 16px; text-transform: uppercase;
  padding: 17px 18px; border-radius: var(--r-sm); box-shadow: 0 8px 15px rgba(0,0,0,.22); }
.btn--offer:hover { background: #1a8139; }

/* ---------- chips / selos ---------- */
.chip-green { display: inline-block; margin-top: 16px; background: var(--green-chip); color: #fff; font-weight: 800; letter-spacing: -.025em;
  padding: 6px 16px; border-radius: var(--r-pill); font-size: 14px; box-shadow: var(--sh-md); }
@media (min-width: 768px) { .chip-green { font-size: 18px; } }
.chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; max-width: 896px; margin: 0 auto 32px; }
.area-chip { display: inline-flex; align-items: center; gap: 6px; background: #fff; border: 1px solid var(--border); border-radius: var(--r-pill);
  padding: 9px 16px; font-size: 12.5px; font-weight: 700; color: #101c28; box-shadow: 0 1px 2px rgba(0,0,0,.04); }
.area-chip::before { content: "✓"; color: var(--green-dark); font-weight: 900; }
@media (min-width: 768px) { .area-chip { font-size: 13.5px; } }
.pill-soft { display: inline-flex; align-items: center; gap: 8px; background: var(--green-soft); color: var(--green-dark); border: 1px solid var(--green-line);
  border-radius: var(--r-pill); padding: 8px 20px; font-size: 14px; font-weight: 700; letter-spacing: .025em; text-transform: uppercase; }
.pill-navy { display: inline-flex; align-items: center; gap: 8px; background: var(--navy-pill); color: #fff; border-radius: var(--r-pill);
  padding: 6px 16px; font-size: 12px; font-weight: 800; letter-spacing: .025em; }
.pill-red { display: inline-block; background: var(--red-pill); color: #fff; border-radius: var(--r-pill); padding: 10px 22px; font-size: 13px; font-weight: 900; text-transform: uppercase; }
.tag { position: absolute; top: 12px; padding: 4px 12px; border-radius: var(--r-pill); font-size: 12px; font-weight: 800; color: #fff; box-shadow: var(--sh-sm); z-index: 2; }
.tag--antes { left: 12px; background: var(--red-pill); }
.tag--depois { right: 12px; background: var(--green-dark); }

/* ---------- placeholders de imagem ---------- */
.ph { display: grid; place-items: center; background: repeating-linear-gradient(45deg, #eceae3 0 12px, #f4f2ea 12px 24px); color: #7a8594;
  font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; border-radius: var(--r); text-align: center; padding: 8px; }
.ph--mockup { width: 100%; max-width: 560px; aspect-ratio: 4/3; margin: 28px auto 8px; border-radius: 14px; box-shadow: var(--sh-lg); animation: d1-mockup 4.5s ease-in-out infinite; }

/* ---------- hero ---------- */
.hero { padding: 40px 16px; text-align: center; }
.hero .lead { max-width: 720px; margin: 24px auto 0; }
.hero .lead b { color: var(--ink); }
@media (min-width: 768px) { .hero { padding: 64px 16px; } }

/* ---------- marquee de páginas ---------- */
.marquee-box { overflow: hidden; margin: 0 -16px; display: grid; gap: 16px; }
.marquee { display: flex; gap: 16px; width: max-content; animation: d1-marquee 60s linear infinite; }
.marquee--rev { animation-name: d1-marquee-rev; }
.marquee .ph { width: 224px; height: 288px; background: #fff; box-shadow: var(--sh-md); border-radius: var(--r); flex-shrink: 0; }
@media (min-width: 768px) { .marquee .ph { width: 288px; height: 384px; } }

/* ---------- cards ---------- */
.card { background: var(--card); color: var(--fg); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 24px; box-shadow: var(--sh-sm); text-align: left; transition: transform .25s, box-shadow .25s; }
.card:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); }
.card .icon { font-size: 30px; line-height: 1; margin-bottom: 14px; }
.card p { margin: 0; font-size: 14px; line-height: 1.45; color: var(--muted); }

/* comparação antes/depois */
.compare { position: relative; border-radius: var(--r-2xl); overflow: hidden; box-shadow: var(--sh-lg); aspect-ratio: 16/9; display: grid; grid-template-columns: 1fr 1fr; margin-top: 28px; }
.compare .ph { border-radius: 0; height: 100%; }
.compare .ph + .ph { filter: blur(0); background: repeating-linear-gradient(45deg, #e3e7df 0 12px, #eef1ea 12px 24px); }
.compare::after { content: ""; position: absolute; left: 50%; top: 0; bottom: 0; width: 3px; background: #fff; box-shadow: 0 0 0 1px rgba(0,0,0,.15); }
.compare .knob { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 44px; height: 44px; border-radius: 50%; background: #fff; box-shadow: var(--sh-lg); z-index: 2; display: grid; place-items: center; font-weight: 900; color: #1e2939; }
.caption { font-size: 12px; color: var(--muted); text-align: center; margin: 10px 0 28px; }
.box-bad, .box-good { border-radius: var(--r-2xl); padding: 24px; text-align: left; }
.box-bad { background: var(--red-soft); border: 1px solid var(--red-line); }
.box-good { background: var(--green-soft); border: 1px solid var(--green-line); }
.box-bad .h3 { color: var(--red-text); } .box-good .h3 { color: var(--green-dark); }
.xlist, .vlist { list-style: none; margin: 12px 0 0; padding: 0; display: grid; gap: 12px; }
.xlist li, .vlist li { position: relative; padding-left: 20px; font-size: 15px; line-height: 1.5; color: #2b2b2b; }
.xlist li::before { content: "✗"; position: absolute; left: 0; color: var(--red-text); font-weight: 800; }
.vlist li::before { content: "✓"; position: absolute; left: 0; color: var(--green-dark); font-weight: 800; }
@media (min-width: 768px) { .box-bad, .box-good { padding: 28px; } }

/* autoridade */
.author { background: #fff; color: var(--fg); border-radius: var(--r-2xl); box-shadow: var(--sh-2xl); padding: 24px; display: grid; gap: 28px; align-items: start; text-align: left; margin-top: 28px; }
.author .ph { aspect-ratio: 1; border-radius: var(--r-xl); box-shadow: var(--sh-md); }
.author p { margin: 0 0 16px; font-size: 16px; line-height: 1.6; }
@media (min-width: 768px) { .author { grid-template-columns: 1fr 1fr; padding: 28px; } .author p { font-size: 18px; } }

/* prints de depoimento (WhatsApp) */
.proof-grid { display: grid; gap: 16px; grid-template-columns: 1fr 1fr; max-width: var(--w-wide); margin: 32px auto 0; }
.proof { border-radius: var(--r-2xl); overflow: hidden; background: #fff; border: 1px solid var(--border); box-shadow: var(--sh-md); }
.proof .ph { border-radius: 0; aspect-ratio: 9/16; }
@media (min-width: 1024px) { .proof-grid { grid-template-columns: repeat(4, 1fr); } }

/* faixa vermelha de bônus */
.bonus-strip { background: var(--red-section); color: #fff; text-align: center; padding: 40px 12px; }
.bonus-strip p { margin: 0 0 6px; font-size: 15px; }
.bonus-strip .big { font-size: 24px; font-weight: 800; margin: 14px 0 12px; }
.bonus-strip .yellow-link { color: var(--yellow); font-weight: 700; text-decoration: underline; font-size: 15px; }
.bonus-strip .yellow-caps { color: var(--yellow); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; margin-top: 18px; font-size: 14px; line-height: 1.4; }
@media (min-width: 768px) { .bonus-strip .big { font-size: 30px; } }

/* card de bônus */
.bonus { background: #fff; border: 1px solid var(--border); border-radius: var(--r-2xl); padding: 24px; box-shadow: var(--sh-sm); display: flex; flex-direction: column; align-items: center; text-align: center; }
.bonus .h3--card { margin: 14px 0 12px; }
.bonus .ph { width: 100%; aspect-ratio: 1; max-width: 240px; }
.bonus p { font-size: 14px; color: var(--muted); margin: 14px 0 0; }
.bonus .foot { margin-top: auto; width: 100%; border-top: 1px dashed var(--border); padding-top: 16px; margin-top: 20px; font-size: 13px; }
.bonus .de { color: var(--red-text); font-weight: 700; } .bonus .de s { color: var(--muted); font-weight: 400; }
.bonus .gratis { color: var(--green-dark); font-weight: 800; }
.bonus .only { color: var(--red-strong); font-weight: 900; letter-spacing: .06em; text-transform: uppercase; margin-top: 14px; line-height: 1.45; font-size: 13px; }

/* ---------- oferta ---------- */
.offer-title { color: #fff; font-size: 30px; font-weight: 800; line-height: 1.25; text-align: center; margin: 22px 0 16px; }
.offer-title + hr { width: 64px; border: 0; border-top: 2px solid rgba(255,255,255,.25); margin: 0 auto 32px; }
@media (min-width: 768px) { .offer-title { font-size: 48px; } }
.offer-card { position: relative; background: #fff; color: var(--navy-title); border-radius: var(--r-xl); box-shadow: var(--sh-offer); padding: 20px; text-align: left; }
.offer-card--basic { border: 2px solid var(--gray-border); }
.offer-card--best { border: 2px solid var(--lime); margin-top: 32px; padding-top: 40px; }
@media (min-width: 768px) { .offer-card { padding: 28px; } .offer-card--best { padding-top: 48px; } }
.offer-card .name { text-align: center; font-size: 20px; font-weight: 800; text-transform: uppercase; margin: 0; }
.offer-card .pay { text-align: center; color: var(--muted); font-size: 14px; margin: 6px 0 4px; }
.price-gray { text-align: center; color: var(--gray-price); font-size: 40px; font-weight: 900; line-height: 1.1; margin: 0 0 16px; }
.best-badge { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); background: var(--red-pill); color: #fff; border-radius: var(--r-pill); padding: 7px 16px; font-size: 12px; font-weight: 900; text-transform: uppercase; white-space: nowrap; }
.gold-title { background: var(--gold); color: #fff; text-align: center; font-size: 22px; font-weight: 800; text-transform: uppercase; border-radius: var(--r-sm); padding: 12px; margin: 0 0 18px; }
@media (min-width: 768px) { .gold-title { font-size: 24px; } }
.included { text-align: center; font-weight: 900; text-transform: uppercase; font-size: 14px; margin: 0 0 12px; }
.offer-list { list-style: none; margin: 16px 0 0; padding: 0; font-size: 14px; color: var(--list); }
.offer-list li { display: flex; gap: 12px; align-items: flex-start; padding: 14px 0; border-top: 1px solid var(--line); line-height: 1.45; }
.offer-list li:first-child { border-top: 0; }
.offer-list b { color: #000; }
.offer-list small { display: block; color: var(--list); font-size: 13px; }
.check, .xmark { flex-shrink: 0; width: 22px; height: 22px; border-radius: 999px; display: grid; place-items: center; font-size: 13px; font-weight: 900; }
.check { background: var(--green-soft-2); color: var(--green-price); }
.xmark { background: var(--red-soft); color: var(--red-text); }
.upgrade-alert { background: #050505; border: 1px solid #1a1a1a; border-radius: var(--r); color: #fff; text-align: center; padding: 14px 14px 16px; margin-top: 16px; font-size: 13px; font-weight: 900; }
.upgrade-alert .r { color: #ff3b30; text-transform: uppercase; display: block; margin-bottom: 6px; }
.upgrade-alert .g { color: var(--lime); }
.price-block { text-align: center; margin-top: 22px; }
.price-block .from { color: var(--red-text); font-weight: 800; text-decoration: line-through; font-size: 15px; }
.price-block .today { color: #101c28; font-weight: 800; font-size: 15px; margin-top: 2px; }
.price-green { color: var(--green-price); font-size: 48px; font-weight: 900; line-height: 1.1; letter-spacing: -.02em; }
@media (min-width: 768px) { .price-green { font-size: 56px; } }
.price-block .inst { color: var(--muted); font-size: 14px; }
.seals { display: flex; justify-content: center; gap: 22px; margin: 20px 0 12px; flex-wrap: wrap; }
.seal { display: flex; align-items: center; gap: 6px; font-size: 12px; line-height: 1.05; color: #5b6573; font-weight: 600; }
.seal i { font-style: normal; font-size: 22px; }
.last-day { text-align: center; font-size: 14px; font-weight: 800; color: #101c28; margin-top: 16px; }
.last-day small { display: block; font-weight: 600; color: var(--muted); margin-top: 6px; font-size: 14px; }
.last-day small b { color: var(--red-text); }

/* ---------- garantia ---------- */
.guarantee .seal-img { width: 110px; height: 110px; margin: 0 auto 20px; border-radius: 50%; background: radial-gradient(circle, #1b1b1b 52%, #d4a73c 53% 64%, #b8862a 65%); color: #e9c46a; display: grid; place-items: center; font-weight: 900; font-size: 30px; box-shadow: var(--sh-md); }
.guarantee h2 { font-size: 20px; font-weight: 900; text-transform: uppercase; color: #101c28; letter-spacing: .02em; margin: 0 0 14px; }
.guarantee p { font-size: 14px; color: var(--muted); margin: 0 0 6px; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; margin-top: 28px; }
.faq details { background: #fff; border: 1px solid var(--border); border-radius: var(--r); }
.faq summary { list-style: none; cursor: pointer; padding: 20px 16px; font-weight: 600; color: var(--ink); display: flex; justify-content: space-between; gap: 12px; font-size: 15px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--green-dark); font-size: 22px; line-height: 1; font-weight: 500; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 0; padding: 0 16px 18px; color: var(--muted); font-size: 14px; }
@media (min-width: 768px) { .faq summary { font-size: 16px; padding: 20px 12px; } }

/* ---------- rodapé ---------- */
.footer { background: var(--navy); color: #fdfcf8; text-align: center; padding: 24px 16px; font-size: 14px; }

/* ---------- toast de prova social (fixo) ---------- */
.toast { position: fixed; left: 16px; bottom: 16px; z-index: 50; max-width: 320px; display: flex; align-items: center; gap: 12px; background: #fff;
  border: 1px solid var(--border); border-radius: var(--r-xl); padding: 12px; box-shadow: var(--sh-2xl); font-size: 13px; color: var(--muted); }
.toast .ph { width: 48px; height: 48px; padding: 0; font-size: 9px; flex-shrink: 0; }
.toast b { color: var(--ink); font-size: 14px; }
.toast .ok { background: var(--green-soft); color: var(--green-dark); border-radius: 999px; padding: 1px 8px; font-size: 11px; font-weight: 700; margin-left: 4px; }
@media (max-width: 767px) { .toast { left: 12px; right: 12px; max-width: none; } }

/* ---------- animações ---------- */
.fade-up { animation: d1-fade-up .7s ease-out both; }
@keyframes d1-fade-up { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes d1-pulse { 0%,100% { box-shadow: 0 10px 25px -5px rgba(61,180,74,.45); transform: scale(1); } 50% { box-shadow: 0 14px 32px -4px rgba(61,180,74,.65); transform: scale(1.04); } }
@keyframes d1-shine { from { background-position: -200% 0; } to { background-position: 200% 0; } }
@keyframes d1-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes d1-marquee-rev { from { transform: translateX(-50%); } to { transform: translateX(0); } }
@keyframes d1-mockup { 0%,100% { transform: scale(1); } 50% { transform: scale(1.04); } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation: none !important; } }
@keyframes d1-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes d1-marquee-rev { from { transform: translateX(-50%); } to { transform: translateX(0); } }
@keyframes d1-mockup { 0%,100% { transform: scale(1); } 50% { transform: scale(1.04); } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation: none !important; } }

/* ===== Popup flutuante de prova social (notificação de compra recente) =====
   Componente do Design site 1. HTML + JS em prova-social.html.
   A lista PROVAS deve vir de pedidos REAIS; nomes inventados = propaganda enganosa. */
.pv-pop{position:fixed;left:16px;bottom:16px;z-index:60;display:flex;align-items:center;gap:12px;
  max-width:340px;padding:12px 34px 12px 12px;background:#fff;border:1px solid #e0e5eb;border-radius:14px;
  box-shadow:0 10px 30px rgba(0,0,0,.14);opacity:0;transform:translateY(14px);transition:opacity .35s,transform .35s}
.pv-pop.pv-on{opacity:1;transform:translateY(0)}
.pv-thumb{flex:0 0 54px;width:54px;height:54px;border-radius:10px;background:#f4f2ea center/cover no-repeat;border:1px solid #e0e5eb}
.pv-txt{min-width:0}
.pv-nome{display:flex;align-items:center;gap:6px;font-weight:800;font-size:14px;color:#101c28;line-height:1.2}
.pv-ok{display:inline-flex;align-items:center;gap:3px;font-size:11px;font-weight:800;color:#1e9343;background:#e6f7ee;
  border-radius:999px;padding:2px 7px;white-space:nowrap}
.pv-acao{font-size:13px;color:#495766;margin-top:2px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.pv-tempo{font-size:12px;color:#8b97a5;margin-top:2px}
.pv-x{position:absolute;top:8px;right:10px;border:0;background:none;font-size:18px;line-height:1;color:#b7bdc7;cursor:pointer}
.pv-x:hover{color:#495766}
@media (max-width:520px){.pv-pop{left:10px;right:10px;max-width:none}}
@media (max-width:520px){.pv-pop{left:10px;right:10px;max-width:none}}

/* ===== Seção da expert / autoridade (Design site 1) =====
   Foto vertical à esquerda com moldura creme e selo; texto à direita com nome, credencial,
   3 provas curtas e assinatura. REGRA: a pessoa e as credenciais precisam ser REAIS
   (ou a foto ser assumidamente ilustrativa, sem nome nem formação inventados). */
.expert{background:#f4f2ea;padding:56px 0}
.expert-in{display:grid;grid-template-columns:minmax(260px,380px) 1fr;gap:38px;align-items:center;
  max-width:1000px;margin:0 auto;padding:0 20px}
.expert-foto{position:relative;border-radius:18px;overflow:hidden;border:6px solid #fff;
  box-shadow:0 18px 36px rgba(0,0,0,.22)}
.expert-foto img{display:block;width:100%;height:100%;object-fit:cover;aspect-ratio:3/4}
.expert-selo{position:absolute;left:0;bottom:16px;background:#1e9343;color:#fff;font-weight:900;
  font-size:13px;letter-spacing:.3px;text-transform:uppercase;padding:8px 16px;border-radius:0 999px 999px 0;
  box-shadow:0 8px 15px rgba(0,0,0,.22)}
.expert h2{text-align:left;text-transform:uppercase;letter-spacing:-.9px;margin-bottom:6px}
.expert .credencial{font-weight:800;color:#1e9343;text-transform:uppercase;font-size:14px;letter-spacing:.4px;margin-bottom:14px}
.expert p{color:#374151;font-size:16px;line-height:1.6}
.expert ul{list-style:none;padding:0;margin:16px 0 0}
.expert li{position:relative;padding-left:28px;margin:8px 0;color:#101c28;font-weight:600}
.expert li::before{content:"✓";position:absolute;left:0;top:0;color:#1e9343;font-weight:900}
.expert .assinatura{margin-top:20px;font-family:Georgia,serif;font-style:italic;font-size:22px;color:#061c31}
@media (max-width:820px){.expert-in{grid-template-columns:1fr;text-align:center}
  .expert h2{text-align:center}.expert li{text-align:left}.expert-foto{max-width:320px;margin:0 auto}}
.pv-demo{position:absolute;right:8px;bottom:6px;font-size:10px;font-weight:800;text-transform:uppercase;
  letter-spacing:.4px;color:#b7bdc7;background:#f4f2ea;border-radius:999px;padding:1px 7px}
