/* =========================================================
   Gabaritando Exatas para Concurso — Landing page
   HTML/CSS/JS estático (reconstruído a partir do export Elementor)
   ========================================================= */

/* ---------- Tokens / paleta ---------- */
:root {
  --blue-dark: #003B63;
  --blue-light: #88BEEB;
  --green: #1FAD3C;
  --green-check: #10C400;
  --green-mint: #A2FFA7;
  --red: #FA0404;
  --red-2: #e43338;
  --strike: #D53131;
  --white: #FFFFFF;
  --gray-100: #F0F0F0;
  --gray-200: #E6E6E6;
  --ink: #000000;

  --maxw: 1120px;
  --radius: 12px;
  --font: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* ---------- Reset básico ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

/* Placeholder para imagem ausente (assets ainda não colocados) */
img.img-missing {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 140px;
  padding: 16px;
  border: 2px dashed rgba(0, 0, 0, .25);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, .04);
  color: rgba(0, 0, 0, .5);
  font-size: 12px;
  text-align: center;
  word-break: break-word;
}
img.img-missing::after { content: "Imagem: " attr(data-file); }

a { text-decoration: none; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

.container.narrow { max-width: 820px; }

.section { padding: 60px 0; }

.section--white { background: var(--white); }
.section--light { background: #ECECEC; }
.section--gray  { background: radial-gradient(circle at center, #E4E4E4 0%, #FFFFFF 78%); }
.section--blue  { background: radial-gradient(circle at center, var(--blue-light) 0%, var(--blue-dark) 78%); }
.section--dark  { background: #1D1D1D; }
.section--pills { background: #DDDDDD; }
.section--bio   { background: radial-gradient(circle at center, #FFFFFF 0%, #DBBBBB 120%); }
.section--red   { background: radial-gradient(circle at center, #FF3B3B 0%, var(--red) 55%, #c40303 100%); }

/* ---------- Tipografia utilitária ---------- */
.title {
  text-align: center;
  font-weight: 400;
  font-size: clamp(20px, 3.2vw, 32px);
  line-height: 1.25;
  max-width: 820px;
  margin: 0 auto;
}
.title.strong { font-weight: 600; }
.title.left { text-align: left; margin-left: 0; }
.title--blue  { color: var(--blue-dark); }
.title--white { color: var(--white); }

.subtitle {
  text-align: center;
  font-size: clamp(16px, 2.4vw, 26px);
  margin: 14px auto 0;
  max-width: 760px;
}

.paragraph {
  text-align: center;
  font-size: clamp(16px, 2.2vw, 26px);
  margin: 18px auto 0;
  max-width: 780px;
  line-height: 1.4;
}

/* espaçamento vertical entre blocos de texto dentro de uma section */
.section .title + .subtitle,
.section .title + .paragraph,
.section .subtitle + .paragraph,
.section .paragraph + .title,
.section .paragraph + .paragraph,
.section .block-img + .title { margin-top: 22px; }

/* ---------- Ícones ---------- */
.ic { width: 20px; height: 20px; flex: 0 0 auto; vertical-align: -4px; }
.ic-green { color: var(--green-check); }
.ic-mint  { color: var(--green-mint); }
.ic-lg { width: 34px; height: 34px; }
.ic-blue { color: var(--blue-dark); }

/* ---------- Header / logo ---------- */
.site-header { background: var(--white); padding: 16px 0; }
.site-header .logo { width: 180px; margin: 0 auto; }

/* ---------- Hero ---------- */
.hero {
  padding: 60px 0;
  text-align: center;
  background: radial-gradient(circle at center, var(--blue-light) 0%, var(--blue-dark) 78%);
}
.hero-title {
  color: var(--white);
  font-weight: 400;
  font-size: clamp(20px, 3.4vw, 32px);
  line-height: 1.3;
  max-width: 760px;
  margin: 0 auto;
}
.hero-title u { text-decoration: underline; }

.hero-checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 620px;
  margin: 28px auto 0;
}
.hero-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: clamp(15px, 2vw, 18px);
  text-align: left;
  border: 1px solid var(--white);
  border-radius: var(--radius);
  padding: 10px 14px;
}

.hero-img { width: min(680px, 100%); margin: 34px auto 0; }
.hero-cta { margin-top: 26px; }

/* ---------- Seta ---------- */
.arrow-strip { background: var(--white); text-align: center; }
.arrow-strip img { width: 90px; margin: -2px auto 0; }

/* ---------- Grids ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
  align-items: start;
}

/* ---------- Bloco imagem centralizada ---------- */
.block-img { width: min(640px, 100%); margin: 24px auto 0; }

/* Duas fotos lado a lado (bloco "você vive pensando") */
.thoughts-imgs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 24px auto 0;
}
.thoughts-imgs img {
  height: 280px;
  width: auto;
  max-width: 46%;
  border-radius: 14px;
  object-fit: cover;
}
@media (max-width: 560px) {
  .thoughts-imgs img { height: 190px; max-width: 47%; }
}

/* ---------- Tile de ícone ilustrativo (passos e entregáveis) ---------- */
.art-tile {
  width: 100%;
  max-width: 200px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--blue-light), var(--blue-dark));
  box-shadow: 0 8px 20px rgba(0, 59, 99, .18);
}
.art-tile .art-ic { width: 50%; height: 50%; color: #fff; }
.art-tile--light {
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
}
.art-tile--light .art-ic { color: var(--blue-dark); }

/* ---------- Cards de passo ---------- */
.step-card {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 900px;
  margin: 20px auto 0;
  padding: 32px;
  background: radial-gradient(circle at center, #FFFFFF 0%, #D6C7B3 160%);
  border: 2px solid var(--blue-dark);
  border-radius: var(--radius);
}
.step-card.reverse { flex-direction: row-reverse; }
.step-img { flex: 0 0 40%; display: flex; justify-content: center; }
.step-img img { border-radius: 16px; width: 80%; }
.step-text { flex: 1; }
.step-text h3 {
  color: var(--blue-dark);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 10px;
}
.step-text p { color: var(--blue-dark); font-size: 16px; }

/* ---------- Benefícios (azul) ---------- */
.grid-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}
.benefit {
  border: 2px solid var(--white);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.benefit img { border-radius: var(--radius); }
.benefit p {
  color: var(--white);
  font-size: 18px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.benefit .ic { margin-top: 3px; }

/* ---------- Tópicos (pills) ---------- */
.pills {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.pill {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 16px;
  padding: 10px 14px;
  border: 1px solid #000;
  border-radius: var(--radius);
  background: linear-gradient(171deg, var(--blue-light), var(--blue-dark));
}
.pill .ic { color: var(--white); }

/* ---------- Cards de entregáveis ---------- */
.deliver-card {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 900px;
  margin: 20px auto 0;
  padding: 32px;
  border-radius: var(--radius);
  border: 2px solid #663F4D;
  background: linear-gradient(326deg, #003B63 67%, #DBBBBB);
  color: var(--white);
}
.deliver-card.reverse { flex-direction: row-reverse; }
.deliver-card--light {
  border-color: var(--white);
  background: radial-gradient(circle at center, #F0F0F0 0%, #B3B3B3 130%);
  color: var(--blue-dark);
}
.deliver-img { flex: 0 0 34%; display: flex; justify-content: center; }
.deliver-img img { width: auto; max-width: 100%; max-height: 200px; margin: 0 auto; filter: drop-shadow(0 10px 18px rgba(0,0,0,.18)); }
.deliver-text { flex: 1; }
.deliver-text h3 {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 10px;
}
.deliver-text p { font-size: 16px; }

/* ---------- Pra quem é ---------- */
.for-who {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 24px;
}
.for-who-left { flex: 1 1 55%; display: flex; flex-direction: column; gap: 14px; }
.for-who-left .title { margin: 0 0 4px; }
.for-who-right { flex: 1 1 45%; display: flex; justify-content: center; }
.for-who-right img { border-radius: 18px; width: min(420px, 100%); }
.fw-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border: 1px solid #663F4D;
  border-radius: var(--radius);
  padding: 18px 20px;
  color: var(--ink);
  font-size: 18px;
}
.fw-item .ic { width: 24px; height: 24px; margin-top: 2px; }

/* ---------- Preço / recapitulando ---------- */
.price-box {
  max-width: 900px;
  margin: 26px auto 0;
  padding: 32px;
  border-radius: var(--radius);
  border: 2px solid var(--white);
  background: radial-gradient(circle at center, var(--blue-light) 0%, var(--blue-dark) 67%);
  color: var(--white);
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--white);
}
.price-row > span:first-child {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: clamp(15px, 2vw, 18px);
}
.strike {
  position: relative;
  white-space: nowrap;
  font-weight: 600;
}
.strike::after {
  content: "";
  position: absolute;
  left: -2px; right: -2px; top: 50%;
  height: 2px;
  background: var(--strike);
  transform: rotate(-8deg);
}
.price-total {
  text-align: center;
  font-size: clamp(20px, 2.6vw, 30px);
  margin-top: 24px;
}
.price-total .strike { font-weight: 400; }
.price-cta-text {
  text-align: center;
  font-size: clamp(18px, 2.4vw, 28px);
  line-height: 1.4;
  margin-top: 18px;
}

/* ---------- Oferta / CTA ---------- */
.offer-card {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  padding: 32px;
  border-radius: var(--radius);
  border: 2px solid var(--white);
  background: radial-gradient(circle at 70% 50%, #FFFFFF 67%, #E8E8E8);
}
.offer-mockup { flex: 1 1 50%; display: flex; justify-content: center; }
.offer-buy {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.offer-logo { width: 60%; }
.offer-lead { color: var(--blue-dark); font-size: 20px; }
.price-big {
  color: var(--blue-dark);
  font-weight: 600;
  font-size: clamp(56px, 9vw, 86px);
  line-height: 1;
}
.price-big .cents { font-size: 0.5em; vertical-align: top; }
.offer-cash { color: var(--blue-dark); font-size: 20px; }
.offer-guarantee { width: 40%; margin-top: 6px; }

.btn-cta {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-weight: 600;
  font-size: clamp(16px, 2vw, 18px);
  padding: 16px 22px;
  border-radius: 8px;
  margin-top: 6px;
  transition: transform .15s ease, filter .15s ease;
  text-align: center;
}
.btn-cta:hover { transform: translateY(-2px); filter: brightness(1.05); }

/* ---------- Passos de compra (icon boxes) ---------- */
.steps-buy { margin-top: 30px; align-items: stretch; }
.icon-box {
  border: 1px solid var(--blue-dark);
  border-radius: 16px;
  padding: 24px;
  background: var(--white);
  transition: box-shadow .2s ease;
}
.icon-box:hover { box-shadow: 0 6px 20px rgba(0,59,99,.12); }
.icon-box h3 {
  color: var(--blue-dark);
  font-size: 20px;
  font-weight: 600;
  margin: 10px 0 8px;
}
.icon-box p { font-size: 16px; color: var(--ink); }

/* ---------- Bio ---------- */
.bio { display: flex; align-items: center; gap: 30px; }
.bio-text { flex: 1 1 50%; display: flex; flex-direction: column; gap: 12px; }
.bio-text .title { margin: 0; }
.bio-text p { color: var(--blue-dark); font-size: 18px; line-height: 1.4; }
.bio-img { flex: 1 1 50%; display: flex; justify-content: center; }
.bio-img img { border-radius: 18px; width: min(460px, 100%); }

/* ---------- 2 Escolhas ---------- */
.choices {
  display: flex;
  align-items: stretch;
  gap: 16px;
  margin-top: 30px;
  max-width: 980px;
  margin-inline: auto;
}
.choice {
  flex: 1;
  border-radius: 16px;
  padding: 20px 24px;
  background: var(--white);
  overflow: hidden;
}
/* Imagem como banner no topo do card (largura total, sangria) */
.choice img {
  display: block;
  width: calc(100% + 48px);
  max-width: none;
  height: 340px;
  object-fit: cover;
  object-position: center top;
  margin: -20px -24px 18px;
}
@media (max-width: 560px) { .choice img { height: 280px; } }
.choice h3 { font-size: 26px; font-weight: 700; margin-bottom: 8px; }
.choice p { font-size: 18px; line-height: 1.35; }
.choice--bad { border: 2px solid var(--red-2); }
.choice--bad h3 { color: var(--red-2); }
.choice--good { border: 2px solid #4DAC54; }
.choice--good h3 { color: #54d48c; }
.choice-or {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-weight: 700;
  color: var(--ink);
  flex: 0 0 auto;
}

/* ---------- FAQ ---------- */
.faq { max-width: 900px; margin: 30px auto 0; display: flex; flex-direction: column; gap: 6px; }
.faq-item { border-radius: var(--radius); overflow: hidden; }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: var(--blue-dark);
  color: var(--white);
  font-family: var(--font);
  font-size: clamp(16px, 2vw, 18px);
  text-align: left;
  padding: 18px;
  border: none;
  cursor: pointer;
}
.faq-q:hover { color: #AFDCFF; }
.faq-ico { font-size: 22px; line-height: 1; transition: transform .2s ease; }
.faq-item.open .faq-q { color: #845464; }
.faq-item.open .faq-ico { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  background: var(--white);
  transition: max-height .28s ease;
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a p { padding: 18px; font-size: clamp(15px, 2vw, 18px); color: var(--ink); }

/* ---------- Rodapé ---------- */
.site-footer {
  background: radial-gradient(circle at center, #FFFFFF 0%, #EDFFEE 140%);
  padding: 24px 0;
}
.site-footer p {
  text-align: center;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.6;
  max-width: 760px;
  margin: 0 auto;
}

/* =========================================================
   Responsivo
   ========================================================= */
@media (max-width: 860px) {
  .section { padding: 44px 0; }

  .grid-benefits { grid-template-columns: repeat(2, 1fr); }
  .pills { grid-template-columns: repeat(2, 1fr); }

  .step-card,
  .step-card.reverse,
  .deliver-card,
  .deliver-card.reverse { flex-direction: column; text-align: center; padding: 24px; }
  .step-img, .deliver-img { flex-basis: auto; }
  .step-text h3, .deliver-text h3 { text-align: center; }

  .for-who { flex-direction: column; }
  .bio { flex-direction: column; }
  .bio-text .title.left, .bio-text .title { text-align: center; }
  .bio-text p { text-align: center; }

  .choices { flex-direction: column; }
  .choice-or { font-size: 32px; padding: 8px 0; }

  .offer-card { flex-direction: column; }
}

@media (max-width: 560px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-benefits { grid-template-columns: 1fr; }
  .pills { grid-template-columns: 1fr; }
  .price-row { flex-wrap: nowrap; }
  .price-row > span:first-child { font-size: 14px; }
}

/* =========================================================
   REVAMP v2 — moderno & limpo + mobile-first
   ========================================================= */

/* Sombras mais suaves e consistentes */
.step-card, .deliver-card { box-shadow: 0 10px 30px rgba(0, 0, 0, .08); }
.offer-card { box-shadow: 0 18px 50px rgba(0, 0, 0, .22); }
.icon-box { box-shadow: 0 6px 18px rgba(0, 0, 0, .06); }

/* Botão CTA com mais presença */
.btn-cta { box-shadow: 0 10px 24px rgba(31, 173, 60, .35); letter-spacing: .2px; }
.btn-cta:hover { box-shadow: 0 14px 30px rgba(31, 173, 60, .45); }

/* ---------- Feedbacks / carrossel ---------- */
.fb-wrap { position: relative; margin-top: 28px; }
.fb-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 6px 20px 16px;
  scroll-padding-left: 20px;
}
.fb-carousel::-webkit-scrollbar { display: none; }
.fb-card {
  scroll-snap-align: start;
  flex: 0 0 300px;
  max-width: 82vw;
  background: #fff;
  border: 1px solid #e6eaef;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .07);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fb-head { display: flex; align-items: center; gap: 10px; }
.fb-badge {
  width: 38px; height: 38px;
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; flex: 0 0 auto;
}
.fb-badge .fb-ic { width: 22px; height: 22px; }
.fb-ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.fb-tt { background: #010101; }
.fb-wa { background: #25D366; }
.fb-fb { background: #1877F2; }
.fb-ht { background: #ff5722; }
.fb-name { font-size: 14px; font-weight: 600; color: var(--blue-dark); line-height: 1.2; }
.fb-stars { display: flex; gap: 2px; }
.fb-star { width: 16px; height: 16px; color: #ffb400; }
.fb-text { font-size: 15px; line-height: 1.45; color: #2b2b2b; }
.fb-text b { color: var(--blue-dark); }

/* Prints reais de feedback */
.fb-shot {
  flex: 0 0 auto;
  width: 240px;
  scroll-snap-align: start;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .14);
  border: 1px solid #e6eaef;
}
.fb-shot img { width: 100%; height: auto; display: block; }
@media (max-width: 560px) { .fb-shot { width: 76vw; max-width: 300px; } }

/* ---------- v3: seta, garantia, benefícios, autoridade ---------- */
.arrow-strip .down-arrow { width: 60px; height: auto; margin: 0 auto; display: block; }

.benefit-tile {
  width: 72px; height: 72px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .35);
}
.benefit-tile .art-ic { width: 40px; height: 40px; color: #fff; }

.trust-badge { margin-top: 12px; text-align: center; }
.trust-methods { display: flex; gap: 12px; justify-content: center; align-items: center; }
.trust-pill { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--blue-dark); }
.trust-ic { width: 20px; height: 20px; color: var(--blue-dark); }
.trust-sep { color: rgba(0, 59, 99, .4); }
.trust-text { margin-top: 8px; font-size: 14px; color: var(--blue-dark); }

.authority { text-align: center; margin-top: 34px; }
.authority-cap { color: var(--blue-dark); font-size: clamp(16px, 2.2vw, 20px); margin-bottom: 14px; }
.authority-cap b { font-weight: 700; }
.authority img {
  width: 100%; max-width: 540px; margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, .25);
}

.thoughts-single { width: min(560px, 100%); margin: 24px auto 0; }

/* Transições mais limpas (autoridade colada na seta; menos vão embaixo dos feedbacks) */
.authority-section { padding-top: 24px; }
.fb-section { padding-bottom: 40px; }

.fb-nav {
  position: absolute; top: calc(50% + 8px); transform: translateY(-50%);
  z-index: 2;
  width: 44px; height: 44px; border-radius: 50%;
  border: none; background: #fff; color: var(--blue-dark);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .16);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.fb-nav svg { width: 22px; height: 22px; }
.fb-prev { left: 8px; }
.fb-next { right: 8px; }
.fb-nav:hover { background: var(--blue-dark); color: #fff; }
@media (max-width: 860px) { .fb-nav { display: none; } }

/* ---------- CTA fixo (mobile) ---------- */
.mobile-cta { display: none; }
@media (max-width: 860px) {
  .mobile-cta {
    display: flex;
    position: fixed; left: 0; right: 0; bottom: 0;
    z-index: 50;
    align-items: center; justify-content: space-between; gap: 12px;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid #e2e2e2;
    box-shadow: 0 -6px 20px rgba(0, 0, 0, .12);
  }
  .mobile-cta-info { display: flex; flex-direction: column; line-height: 1.1; color: var(--blue-dark); }
  .mobile-cta-info b { font-size: 17px; }
  .mobile-cta-info small { font-size: 11px; opacity: .7; }
  .mobile-cta-btn {
    background: var(--green); color: #fff; font-weight: 700;
    padding: 13px 18px; border-radius: 10px; font-size: 15px;
    box-shadow: 0 8px 18px rgba(31, 173, 60, .4);
    white-space: nowrap;
  }
  body { padding-bottom: 76px; }
}

/* ---------- Ajustes finos mobile ---------- */
@media (max-width: 560px) {
  .section { padding: 40px 0; }
  .container { padding: 0 18px; }
  .btn-cta, .hero-cta { width: 100%; }
  .title { line-height: 1.28; }
  .fb-card { flex-basis: 84vw; max-width: 84vw; }
}
