/* =============================================
   CONSUMERREVIEW V3 — Styles
   Design tokens adaptados do V4
   ============================================= */

:root {
  --brand: #0b63d6;
  --brand-dark: #053b7a;
  --accent: #f5c300;
  --accent-dark: #d4a800;
  --bg: #f7fbff;
  --card: #ffffff;
  --muted: #6c757d;
  --text: #0b1b2b;
  --border: #e9eef8;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow-sm: 0 6px 18px rgba(11,99,214,0.06);
  --shadow-md: 0 12px 30px rgba(11,99,214,0.08);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* === BASE === */
body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: underline; }
a:hover { color: var(--brand-dark); }
p { margin-bottom: 1em; }
ul, ol { margin: 0 0 1em 1.4em; }
li { margin-bottom: 6px; line-height: 1.6; }

/* === PAGE WRAPPER (transparente — fundos nas seções) === */
.page-wrapper { background: transparent; }

/* === INNER (coluna centralizada) === */
.inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 30px;
}

/* =============================================
   TOPNAV
   ============================================= */
.topnav {
  background: linear-gradient(90deg, rgba(11,27,43,0.97), rgba(5,59,122,0.97));
  backdrop-filter: blur(6px);
  box-shadow: 0 6px 18px rgba(11,99,214,0.12);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1050;
  width: 100%;
}

.topnav-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 10px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topnav-title {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.2px;
}

.topnav-btn {
  font-size: 14px;
  font-weight: 700;
  padding: 9px 20px;
  text-decoration: none !important;
  white-space: nowrap;
}

/* =============================================
   HERO (fundo cinza azulado)
   ============================================= */
.hero-wrap {
  background: linear-gradient(180deg, #e8edf5, #dde4ef);
  padding: 24px 0;
  width: 100%;
}

.hero-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  gap: 28px;
}

/* Coluna esquerda: Rating acima + Produto abaixo */
.hero-left {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.rating-label {
  font-size: 14px;
  color: var(--text);
  font-weight: 600;
  margin: 0;
  text-align: center;
}

.stars {
  color: var(--accent);
  font-size: 22px;
  letter-spacing: 2px;
  line-height: 1;
}

.stars span {
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  margin-left: 4px;
}

.hero-img img {
  max-width: 300px;
  width: 300px;
  display: block;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.12));
}

/* Coluna direita: Headline + CTA */
.hero-text { flex: 1; }

.hero-headline {
  font-size: 1.15rem;
  color: var(--text);
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 8px;
}

.hero-headline strong { font-weight: 800; }

.hero-sub {
  font-size: 14px;
  color: #444;
  margin-bottom: 14px;
}

.hero-sub strong { font-weight: 700; }

/* =============================================
   BOTÃO CTA PRINCIPAL
   Cor do v4: azul #0b63d6 → #053b7a
   Hover: gradiente invertido (#053b7a → #0b63d6)
   ============================================= */
.btn-cta {
  display: inline-block;
  background: linear-gradient(180deg, var(--brand), var(--brand-dark));
  border: none;
  border-radius: 8px;
  color: #fff !important;
  font-size: 16px;
  font-weight: 700;
  padding: 13px 32px;
  text-align: center;
  text-decoration: none !important;
  box-shadow: 0 6px 18px rgba(11,99,214,0.25);
  cursor: pointer;
  transition: background 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}
.btn-cta:hover {
  background: linear-gradient(180deg, var(--brand-dark), var(--brand));
  box-shadow: 0 8px 24px rgba(11,99,214,0.38);
  color: #fff !important;
}

/* Centralizado */
.btn-cta-wrap {
  text-align: center;
  margin: 18px 0 4px;
}

/* CTAs standalone dentro de .inner ficam centralizados */
.inner > .btn-cta {
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.btn-cta.hero-cta {
  font-size: 15px;
  padding: 11px 24px;
}

/* Topnav btn mantém amarelo (contraste no fundo escuro) */
.topnav-btn {
  background: linear-gradient(180deg, var(--accent), var(--accent-dark)) !important;
  color: #111 !important;
  border-radius: 8px;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}
.topnav-btn:hover {
  background: linear-gradient(180deg, var(--accent-dark), var(--accent)) !important;
  color: #111 !important;
  box-shadow: 0 6px 16px rgba(245,195,0,0.4) !important;
}

.offer-note {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
  margin-bottom: 16px;
}
.offer-note strong { color: var(--text); font-weight: 600; }

/* =============================================
   SECTION WRAPPERS
   ============================================= */
.section-white {
  background: #fff;
  padding: 36px 0;
  width: 100%;
}

.section-gray {
  background: linear-gradient(180deg, #f7fbff, #eef3fb);
  padding: 36px 0;
  width: 100%;
}

/* =============================================
   SECTION HEADINGS
   ============================================= */
.section-title {
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--text);
  text-align: center;
  margin-bottom: 4px;
  line-height: 1.3;
}

.section-title strong, .section-title b { font-weight: 700; }

.section-subtitle {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
}

/* =============================================
   INTRO SECTION
   ============================================= */
.intro-title {
  font-size: 1.65rem;
  font-weight: 400;
  color: var(--text);
  text-align: center;
  margin-bottom: 4px;
  line-height: 1.3;
}
.intro-title strong { font-weight: 700; }

.intro-author {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 18px;
}

.author-block {
  display: flex;
  justify-content: center;
  margin-bottom: 22px;
}

.author-block img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--border);
  box-shadow: var(--shadow-sm);
}

/* =============================================
   SCAM ALERT (fundo cinza azulado)
   ============================================= */
.scam-alert-wrap {
  background: linear-gradient(180deg, #f7fbff, #eef3fb);
  padding: 36px 0;
  width: 100%;
}

.scam-alert-wrap img.scam-img {
  max-width: 820px;
  width: 100%;
  margin: 12px auto 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

/* =============================================
   PROS & CONS
   ============================================= */
.pros-cons-img {
  max-width: 640px;
  width: 100%;
  margin: 10px auto 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.pros-label {
  color: #198754;
  font-size: 1.05rem;
  font-weight: 700;
  margin: 16px 0 8px;
}

.cons-label {
  color: #dc3545;
  font-size: 1.05rem;
  font-weight: 700;
  margin: 22px 0 8px;
}

/* =============================================
   CTA BOX (dashed border — estilo v3 original)
   ============================================= */
.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 2px dashed #c5d5ea;
  border-radius: var(--radius);
  padding: 18px 24px;
  margin: 28px 0 10px;
  background: linear-gradient(90deg, #eef5ff, #fafcff);
  flex-wrap: wrap;
}

.cta-box-left {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
  flex: 1;
  min-width: 160px;
}
.cta-box-left p { margin: 0; }
.cta-box-left p:first-child {
  color: var(--text);
  font-weight: 600;
  margin-bottom: 2px;
}

.cta-box .btn-cta {
  flex: 0 0 auto;
  font-size: 15px;
  padding: 11px 22px;
  white-space: nowrap;
}

/* =============================================
   TWO-COL LAYOUTS
   ============================================= */
.two-col {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  margin: 18px 0 10px;
  flex-wrap: wrap;
}

.two-col .col-img {
  flex: 0 0 260px;
  max-width: 260px;
}

.two-col .col-img img,
.two-col .col-img picture img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.two-col .col-text { flex: 1; min-width: 200px; }

.diagram-img {
  flex: 0 0 440px;
  max-width: 440px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 4px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.diagram-img picture img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: calc(var(--radius) - 4px);
}

/* =============================================
   BENEFITS
   ============================================= */
.benefit-item { padding: 8px 0; }

.benefit-title {
  color: var(--brand);
  font-weight: 600;
}

/* =============================================
   INGREDIENTS
   ============================================= */
.supfacts-img {
  max-width: 820px;
  width: 100%;
  margin: 16px auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 6px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

/* =============================================
   GUARANTEE
   ============================================= */
.guarantee-wrap {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  margin: 14px 0;
  flex-wrap: wrap;
}

.guarantee-wrap .guarantee-badge {
  flex: 0 0 340px;
  max-width: 340px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.guarantee-wrap .guarantee-badge img {
  margin: 0 auto;
}

.guarantee-wrap .guarantee-text { flex: 1; min-width: 200px; }

.guarantee-wrap h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

/* =============================================
   FINAL CONSIDERATIONS (fundo cinza azulado)
   ============================================= */
.final-wrap {
  background: linear-gradient(180deg, #f7fbff, #eef3fb);
  padding: 36px 0;
  width: 100%;
}

.final-wrap .section-title {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

/* =============================================
   PRICING
   ============================================= */
.pricing-img {
  max-width: 100%;
  width: 100%;
  margin: 12px auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

/* =============================================
   FAQ
   ============================================= */
.faq-q {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin: 20px 0 4px;
}

.faq-a {
  font-size: 15px;
  color: #444;
  margin: 0 0 6px;
  line-height: 1.7;
}

/* =============================================
   FOOTER LINKS
   ============================================= */
.footer-links {
  text-align: center;
  padding: 24px 20px 10px;
  font-size: 13px;
  color: var(--muted);
  background: #fff;
  width: 100%;
  border-top: 1px solid var(--border);
}
.footer-links a { color: var(--muted); text-decoration: none; }
.footer-links a:hover { text-decoration: underline; color: var(--brand); }

/* =============================================
   DISCLAIMER
   ============================================= */
.disclaimer {
  background: #fff;
  width: 100%;
  padding: 10px 0 40px;
}

.disclaimer p {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 30px;
  font-size: 11px;
  color: #aaa;
  line-height: 1.8;
  text-align: center;
}

/* =============================================
   STICKY CTA BAR (aparece após scroll)
   ============================================= */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(11, 27, 43, 0.97);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(11,99,214,0.3);
  box-shadow: 0 -8px 28px rgba(2,8,23,0.18);
  padding: 10px 0;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sticky-cta-text {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.sticky-cta-badge {
  background: linear-gradient(180deg, var(--accent), var(--accent-dark));
  color: #111;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.sticky-cta-msg {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
}

.sticky-cta-msg strong {
  color: #fff;
  font-weight: 700;
}

.sticky-cta-btn {
  background: linear-gradient(180deg, var(--brand), var(--brand-dark));
  color: #fff !important;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none !important;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(11,99,214,0.35);
  transition: background 0.25s ease, box-shadow 0.25s ease;
  flex: 0 0 auto;
}

.sticky-cta-btn:hover {
  background: linear-gradient(180deg, var(--brand-dark), var(--brand));
  box-shadow: 0 6px 18px rgba(11,99,214,0.5);
  color: #fff !important;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 680px) {
  .inner { padding: 0 16px; }
  .topnav-inner { padding: 8px 16px; }
  .topnav-title { font-size: 0.9rem; }
  .topnav-btn { font-size: 12px; padding: 7px 12px; }

  .hero-inner {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 0 16px;
    text-align: center;
  }
  .hero-left { align-items: center; }
  .hero-img img { max-width: 160px; }
  .hero-text { text-align: center; }
  .btn-cta.hero-cta { display: block; width: 100%; }

  .intro-title { font-size: 1.2rem; }
  .section-title { font-size: 1.25rem; }

  .btn-cta { font-size: 14px; padding: 12px 20px; display: block; width: 100%; white-space: normal; }

  .two-col { flex-direction: column; }
  .two-col .col-img { max-width: 300px; margin: 0 auto; }
  .diagram-img { max-width: 100%; flex: unset; border: none; padding: 0; background: none; box-shadow: none; }

  .guarantee-wrap { flex-direction: column; }
  .guarantee-wrap .guarantee-badge { flex: unset; max-width: 280px; width: 100%; margin: 0 auto 16px; }
  .pricing-img { max-width: 100%; border-radius: 8px; }

  .cta-box { flex-direction: column; text-align: center; }
  .cta-box .btn-cta { width: 100%; }

  .disclaimer p { padding: 0 16px; }

  /* Sticky CTA mobile: empilha vertical */
  .sticky-cta-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .sticky-cta-text { justify-content: center; }
  .sticky-cta-btn { width: 100%; text-align: center; }

  body { padding-bottom: 90px; }
}
