/* ============================================================
   Radar Concursos — Kit Visual PND 2026
   Direção visual: "caderno bonito" — doce, delicado e organizado.

   Tipografia : Fraunces (display serifado macio) + Nunito (corpo
                arredondado) + Caveat (anotações à mão)
   Paleta     : verde sage/esmeralda como voz principal, apoiado por
                lavanda, mel e pêssego sobre creme quente
   Motivos    : bordas onduladas (scallop), poás discretos,
                molduras de foto levemente tortas, brilhos ✦
   ============================================================ */

:root {
  /* --- verde sage (voz principal) --- */
  --leaf-50:    #f3faf6;
  --leaf-100:   #ddf1e6;
  --leaf-200:   #b8e2cc;
  --leaf-300:   #8bcfad;
  --leaf-400:   #4bb188;
  --leaf-500:   #2f9670;
  --leaf-600:   #217a5c;
  --leaf-700:   #17604a;

  /* --- lavanda (apoio) --- */
  --lav-100:    #f1eaff;
  --lav-200:    #ded0fb;
  --lav-500:    #a98be0;
  --lav-700:    #7256ad;

  /* --- mel (destaque / estrelas) --- */
  --butter-100: #fff3d2;
  --butter-200: #ffe6a6;
  --butter-400: #ffcf5c;
  --butter-600: #dc9d18;
  --butter-700: #9c6f0b;

  /* --- pêssego (alerta gentil) --- */
  --peach-100:  #ffece0;
  --peach-200:  #ffd7bd;
  --peach-500:  #f0a267;
  --peach-600:  #d97f3f;

  /* --- neutros quentes --- */
  --cream:      #fffcf6;
  --cream-2:    #f1f8f2;
  --white:      #ffffff;
  --ink:        #1e352a;
  --ink-2:      #38574a;
  --text:       #5a7266;
  --muted:      #85978c;
  --line:       #dfeee5;
  --line-2:     #e8efe9;

  /* --- forma --- */
  --r-sm:       14px;
  --r:          20px;
  --r-lg:       28px;
  --r-xl:       34px;
  --pill:       999px;

  --shadow-xs:  0 2px 8px rgba(38, 96, 74, .10);
  --shadow:     0 10px 26px rgba(38, 96, 74, .12);
  --shadow-lg:  0 24px 54px rgba(24, 82, 62, .16);
  --shadow-leaf:0 12px 26px rgba(33, 122, 92, .32);

  --container:  1160px;

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body:    'Nunito', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-hand:    'Caveat', 'Segoe Script', cursive;

  /* ornamentos reutilizados */
  --sparkle: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 0c.7 6.4 4.9 10.6 12 12-7.1 1.4-11.3 5.6-12 12-.7-6.4-4.9-10.6-12-12C7.1 10.6 11.3 6.4 12 0z' fill='%23ffcf5c'/%3E%3C/svg%3E");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  font-size: 1rem;
  line-height: 1.72;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-variation-settings: 'SOFT' 60, 'WONK' 1;
  color: var(--ink);
  line-height: 1.18;
  letter-spacing: -.01em;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background: var(--leaf-200);
  color: var(--ink);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.center {
  text-align: center;
}

/* ---------- Botões ---------- */
.btn {
  position: relative;
  display: inline-block;
  padding: 17px 32px;
  border: 0;
  border-radius: var(--pill);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .2px;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, color .16s ease;
}

.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--leaf-500), var(--leaf-600) 52%, var(--leaf-700));
  box-shadow: var(--shadow-leaf);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(33, 122, 92, .40);
}

.btn--outline {
  color: var(--leaf-600);
  background: #fff;
  border: 2px solid var(--leaf-200);
  box-shadow: var(--shadow-xs);
}

.btn--outline:hover {
  color: var(--leaf-700);
  background: var(--leaf-50);
  border-color: var(--leaf-300);
  transform: translateY(-2px);
}

.btn--block {
  display: block;
  width: 100%;
  text-align: center;
}

.btn--3d {
  overflow: hidden;
  box-shadow: 0 6px 0 var(--leaf-700), 0 16px 28px rgba(33, 122, 92, .30);
}

.btn--3d:hover {
  transform: translateY(3px);
  box-shadow: 0 3px 0 var(--leaf-700), 0 10px 20px rgba(33, 122, 92, .28);
}

/* faixa de brilho deslizante */
.btn--3d::after {
  content: "";
  position: absolute;
  top: 0;
  left: -140%;
  width: 55%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .55), transparent);
  transform: skewX(-20deg);
  pointer-events: none;
  animation: ctaShine 2.4s ease-in-out infinite;
}

@keyframes ctaShine {
  0%   { left: -140%; }
  55%  { left: 160%; }
  100% { left: 160%; }
}

@media (prefers-reduced-motion: reduce) {
  .btn--3d::after { animation: none; }
}

/* ---------- Badge / etiqueta ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 8px 18px 8px 14px;
  border: 1px solid var(--leaf-100);
  border-radius: var(--pill);
  color: var(--leaf-600);
  background: var(--white);
  box-shadow: 0 4px 14px rgba(33, 122, 92, .12);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.badge::before {
  content: "";
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  background: var(--sparkle) center / contain no-repeat;
}

/* ---------- Topbar ---------- */
.topbar {
  position: relative;
  padding: 12px 16px;
  color: #fff;
  background:
    radial-gradient(circle at 12% 120%, rgba(255, 255, 255, .22), transparent 42%),
    linear-gradient(90deg, var(--leaf-600), var(--leaf-500) 50%, var(--leaf-600));
  text-align: center;
  font-size: .87rem;
  font-weight: 600;
  letter-spacing: .1px;
}

.topbar strong {
  color: var(--butter-100);
  font-weight: 800;
}

/* ---------- Seções ---------- */
.section {
  position: relative;
  padding: 88px 0;
}

/* fundo alternado: blush com poás delicados + borda ondulada no topo */
.section--alt {
  background-color: var(--cream-2);
  background-image:
    radial-gradient(rgba(33, 122, 92, .07) 1.6px, transparent 1.7px),
    radial-gradient(560px 320px at 88% 4%, rgba(169, 139, 224, .10), transparent 70%),
    radial-gradient(460px 300px at 6% 96%, rgba(255, 207, 92, .12), transparent 70%);
  background-size: 22px 22px, auto, auto;
  background-position: 0 0, 0 0, 0 0;
}

/* recorte em "casquinha" nas bordas das seções alternadas */
.section--alt::before,
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 14px;
  background-image: radial-gradient(circle at 14px 0, var(--cream) 12px, transparent 12.5px);
  background-size: 28px 14px;
  background-repeat: repeat-x;
  pointer-events: none;
}

.section--alt::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 14px;
  background-image: radial-gradient(circle at 14px 14px, var(--cream) 12px, transparent 12.5px);
  background-size: 28px 14px;
  background-repeat: repeat-x;
  pointer-events: none;
}

.section__title {
  margin-bottom: 16px;
  font-size: 2.5rem;
  font-weight: 700;
  font-variation-settings: 'SOFT' 70, 'WONK' 1, 'opsz' 96;
}

/* florzinha de arremate sob títulos centralizados */
.center > .section__title::after {
  content: "✿";
  display: block;
  margin: 14px auto -4px;
  color: var(--leaf-200);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1;
}

.section__title--left {
  text-align: left;
}

.section__sub {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text);
  font-size: 1.06rem;
}

.section__sub--left {
  margin-left: 0;
  text-align: left;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 66px 0 82px;
  background-color: var(--cream);
  background-image:
    radial-gradient(rgba(33, 122, 92, .06) 1.6px, transparent 1.7px),
    radial-gradient(760px 420px at 50% -8%, rgba(184, 226, 203, .55), transparent 66%),
    radial-gradient(520px 340px at 92% 22%, rgba(222, 208, 251, .45), transparent 70%),
    radial-gradient(420px 300px at 6% 78%, rgba(255, 230, 166, .40), transparent 72%);
  background-size: 22px 22px, auto, auto, auto;
  text-align: center;
}

/* bolhas suaves de fundo */
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  border-radius: 48% 52% 58% 42% / 52% 45% 55% 48%;
  filter: blur(38px);
  pointer-events: none;
}

.hero::before {
  top: -70px;
  left: -90px;
  width: 320px;
  height: 320px;
  background: rgba(221, 241, 229, .85);
}

.hero::after {
  right: -80px;
  bottom: 40px;
  width: 260px;
  height: 260px;
  background: rgba(241, 234, 255, .8);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__title {
  max-width: 940px;
  margin-bottom: 22px;
  font-size: 3.35rem;
  font-weight: 700;
  font-variation-settings: 'SOFT' 80, 'WONK' 1, 'opsz' 144;
  letter-spacing: -.02em;
}

.hero__title .accent {
  position: relative;
  color: var(--leaf-600);
  white-space: nowrap;
}

/* ondinha desenhada à mão sob o termo em destaque */
.hero__title .accent::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -.12em;
  left: 0;
  height: .16em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10' preserveAspectRatio='none'%3E%3Cpath d='M1 6.5c8-5 16 5 24 0s16-5 24 0 16 5 24 0 16-5 26 0' stroke='%238bcfad' stroke-width='3.2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
}

/* marca-texto que "pinta" o trecho ao carregar */
.hero__title .marker {
  display: inline;
  padding: 0 .14em;
  white-space: nowrap;
  color: var(--ink);
  background-image:
    linear-gradient(100deg,
      rgba(255, 231, 176, 0)   0%,
      rgba(255, 231, 176, .98) 5%,
      #ffe7b0                 50%,
      rgba(255, 231, 176, .98) 95%,
      rgba(255, 231, 176, 0)  100%),
    linear-gradient(100deg,
      rgba(247, 197, 74, 0)  0%,
      rgba(247, 197, 74, .9) 9%,
      rgba(247, 197, 74, .9) 91%,
      rgba(247, 197, 74, 0) 100%);
  background-repeat: no-repeat;
  background-position: 0 72%, 0 100%;
  background-size: 0 .74em, 0 .14em;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
  animation: marker-sweep .85s cubic-bezier(.2, .75, .3, 1) .45s forwards;
}

@keyframes marker-sweep {
  to { background-size: 100% .74em, 100% .14em; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__title .marker {
    animation: none;
    background-size: 100% .74em, 100% .14em;
  }
}

.hero__lead {
  max-width: 730px;
  margin-bottom: 32px;
  color: var(--text);
  font-size: 1.14rem;
}

.hero__mockup {
  position: relative;
  width: 100%;
  max-width: 760px;
  margin: 0 auto 30px;
}

/* halo suave atrás do mockup */
.hero__mockup::before {
  content: "";
  position: absolute;
  inset: 6% 2% 4%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 226, 203, .55), rgba(184, 226, 203, 0) 68%);
  filter: blur(6px);
}

.hero__mockup img {
  display: block;
  width: 100%;
  height: auto;
}

.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}

.hero__cta .btn {
  width: 100%;
  max-width: 350px;
  text-align: center;
}

.hero__cta .btn--primary {
  overflow: hidden;
  padding: 21px 38px;
  font-size: 1.05rem;
}

.hero__cta .btn--primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -140%;
  width: 55%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .55), transparent);
  transform: skewX(-20deg);
  pointer-events: none;
  animation: ctaShine 2.4s ease-in-out infinite;
}

.hero__cta .btn--primary:hover::after {
  animation-play-state: paused;
}

.hero__cta .btn--outline {
  padding: 18px 34px;
}

@media (prefers-reduced-motion: reduce) {
  .hero__cta .btn--primary::after { animation: none; }
}

/* itens da hero como etiquetinhas */
.hero__features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 900px;
  margin-bottom: 34px;
  list-style: none;
}

.hero__features li {
  padding: 9px 17px;
  border: 1px solid var(--line);
  border-radius: var(--pill);
  color: var(--ink-2);
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--shadow-xs);
  font-size: .87rem;
  font-weight: 700;
  line-height: 1.4;
}

.hero__features li:nth-child(3n+1) { border-color: var(--leaf-100); }
.hero__features li:nth-child(3n+2) { border-color: var(--lav-200); }
.hero__features li:nth-child(3n+3) { border-color: var(--butter-200); }

.hero__stars {
  max-width: 620px;
  padding: 11px 22px;
  border: 1px dashed var(--butter-200);
  border-radius: var(--pill);
  color: var(--ink-2);
  background: var(--butter-100);
  font-size: .92rem;
  font-weight: 700;
}

/* ---------- Carrosséis ---------- */
.gallery {
  margin: 46px 0;
  overflow: hidden;
}

.gallery__track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding: 18px 24px 22px;
  animation: slideLeft 34s linear infinite;
}

.gallery__track--rev {
  animation-direction: reverse;
}

.gallery--stack {
  margin-top: -14px;
}

/* moldura de fotinha, levemente torta */
.gallery__item {
  width: 214px;
  height: 300px;
  flex-shrink: 0;
  padding: 9px 9px 9px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: #fff;
  box-shadow: var(--shadow);
  transform: rotate(-1.1deg);
}

.gallery__item:nth-child(even) {
  transform: rotate(1.2deg);
  border-color: var(--lav-200);
}

.gallery__item:nth-child(3n) {
  border-color: var(--butter-200);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  border-radius: 13px;
  object-fit: cover;
}

.gallery__track--h .gallery__item {
  width: 366px;
  height: 259px;
}

.gallery__track--reviews {
  align-items: stretch;
}

.gallery__track--reviews .review {
  width: 340px;
  flex-shrink: 0;
}

@keyframes slideLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Grades e cards ---------- */
.grid {
  display: grid;
  gap: 22px;
  margin-top: 48px;
}

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card {
  position: relative;
  min-height: 235px;
  padding: 30px 28px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
  box-shadow: var(--shadow);
  text-align: left;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--leaf-200);
  box-shadow: var(--shadow-lg);
}

.feature-card--highlight {
  border-color: var(--butter-200);
  background: linear-gradient(170deg, #fff 30%, var(--butter-100));
}

/* selinho de brilho no canto do card em destaque */
.feature-card--highlight::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 18px;
  width: 20px;
  height: 20px;
  background: var(--sparkle) center / contain no-repeat;
  opacity: .9;
}

/* ícone em formato de bolha orgânica, cor rotativa */
.feature-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin-bottom: 18px;
  border-radius: 58% 42% 46% 54% / 48% 56% 44% 52%;
  background: var(--leaf-100);
  font-size: 1.6rem;
  line-height: 1;
}

.feature-card:nth-child(4n+2) .feature-card__icon { background: var(--lav-100); }
.feature-card:nth-child(4n+3) .feature-card__icon { background: var(--peach-100); }
.feature-card:nth-child(4n+4) .feature-card__icon { background: var(--butter-100); }

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  font-weight: 700;
}

.feature-card p {
  color: var(--text);
  font-size: .94rem;
}

/* ---------- Para quem é ---------- */
.audience {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 44px;
}

.audience__item {
  padding: 15px 22px;
  border: 1px solid var(--line);
  border-radius: var(--pill);
  color: var(--ink-2);
  background: #fff;
  box-shadow: var(--shadow-xs);
  font-weight: 700;
  font-size: .95rem;
  line-height: 1.5;
  transition: transform .18s ease, border-color .18s ease;
}

.audience__item:hover {
  transform: translateX(4px);
  border-color: var(--leaf-200);
}

.audience__item:nth-child(even) {
  border-color: var(--lav-200);
}

/* ---------- Bloco de dores ---------- */
.pain-box {
  position: relative;
  padding: 54px 44px;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.pain-box__head {
  margin-bottom: 34px;
}

.pain-box__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  margin: 0 auto 18px;
  border-radius: 56% 44% 48% 52% / 46% 54% 46% 54%;
  color: var(--peach-600);
  background: var(--peach-100);
  font-size: 2rem;
  line-height: 1;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 22px;
  margin-bottom: 38px;
}

.pain-item {
  position: relative;
  padding: 14px 18px 14px 54px;
  border: 1px solid var(--peach-200);
  border-radius: var(--r);
  color: var(--ink-2);
  background: var(--peach-100);
  font-weight: 700;
  font-size: .93rem;
  line-height: 1.5;
}

.pain-item::before {
  content: "!";
  position: absolute;
  top: 50%;
  left: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
  border-radius: 50%;
  color: #fff;
  background: var(--peach-600);
  font-size: .78rem;
  font-weight: 800;
}

/* ---------- Duas colunas ---------- */
.two-col {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 54px;
  align-items: center;
}

.two-col__media {
  position: relative;
}

/* moldura levemente torta + fita washi decorativa */
.two-col__media img {
  width: 100%;
  height: auto;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
  box-shadow: var(--shadow-lg);
  transform: rotate(-1.2deg);
}

.two-col__media::after {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  z-index: 2;
  width: 108px;
  height: 26px;
  transform: translateX(-50%) rotate(-4deg);
  border-radius: 3px;
  background: repeating-linear-gradient(
    -45deg,
    rgba(255, 207, 92, .55),
    rgba(255, 207, 92, .55) 7px,
    rgba(255, 230, 166, .55) 7px,
    rgba(255, 230, 166, .55) 14px
  );
}

.two-col__body {
  text-align: left;
}

/* ---------- Lista de checks ---------- */
.check-list {
  margin-top: 10px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 12px 0 12px 42px;
  border-bottom: 1px dashed var(--line);
  color: var(--ink-2);
  font-size: .97rem;
  font-weight: 700;
}

.check-list li:last-child {
  border-bottom: 0;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 27px;
  transform: translateY(-50%);
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(140deg, var(--leaf-500), var(--leaf-700));
  box-shadow: 0 4px 10px rgba(33, 122, 92, .28);
  font-size: .8rem;
  font-weight: 800;
}

/* ---------- Bônus ---------- */
.bonus-card {
  position: relative;
  overflow: hidden;
  padding: 0 0 26px;
  border: 2px dashed var(--leaf-200);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, var(--leaf-50), #fff 42%);
  box-shadow: var(--shadow);
  text-align: left;
  transition: transform .2s ease, box-shadow .2s ease;
}

.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.bonus-card:nth-child(even) {
  border-color: var(--lav-200);
  background: linear-gradient(180deg, var(--lav-100), #fff 42%);
}

.bonus-card__thumb {
  margin-bottom: 18px;
  overflow: hidden;
}

.bonus-card__thumb img {
  display: block;
  width: 100%;
  height: auto;
}

.bonus-card h3 {
  margin-bottom: 10px;
  padding: 0 22px;
  font-size: 1.05rem;
  font-weight: 700;
}

.bonus-card p {
  padding: 0 22px;
  color: var(--text);
  font-size: .91rem;
}

/* ---------- Passo a passo ---------- */
.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.step {
  position: relative;
  padding: 30px 20px 26px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
  box-shadow: var(--shadow);
  text-align: center;
}

/* linha pontilhada ligando um passo ao outro */
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 52px;
  right: -18px;
  width: 18px;
  height: 3px;
  background-image: radial-gradient(circle, var(--leaf-200) 1.5px, transparent 1.6px);
  background-size: 7px 3px;
}

.step__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  border-radius: 56% 44% 50% 50% / 48% 52% 48% 52%;
  color: #fff;
  background: linear-gradient(140deg, var(--leaf-500), var(--leaf-700));
  box-shadow: 0 8px 18px rgba(33, 122, 92, .28);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
}

.step:nth-child(2) .step__num {
  background: linear-gradient(140deg, var(--lav-500), #8f6fd0);
  box-shadow: 0 8px 18px rgba(169, 139, 224, .32);
}

.step:nth-child(3) .step__num {
  background: linear-gradient(140deg, var(--peach-500), var(--peach-600));
  box-shadow: 0 8px 18px rgba(224, 138, 70, .30);
}

.step:nth-child(4) .step__num {
  background: linear-gradient(140deg, var(--butter-400), var(--butter-600));
  box-shadow: 0 8px 18px rgba(220, 157, 24, .30);
}

.step h3 {
  margin-bottom: 8px;
  font-size: 1.02rem;
  font-weight: 700;
}

.step p {
  color: var(--text);
  font-size: .88rem;
}

/* ---------- Depoimentos ---------- */
.reviews {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  max-width: var(--container);
  margin: 46px auto 0;
  padding: 0 24px;
}

.review {
  position: relative;
  overflow: hidden;
  padding: 26px 24px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
  box-shadow: var(--shadow);
  text-align: left;
}

/* aspas decorativas ao fundo */
.review::before {
  content: "❞";
  position: absolute;
  top: -18px;
  right: 8px;
  color: var(--leaf-100);
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  pointer-events: none;
}

.review__stars {
  position: relative;
  margin-bottom: 12px;
  color: var(--butter-400);
  font-size: 1rem;
  letter-spacing: 2px;
}

.review__text {
  position: relative;
  min-height: 118px;
  margin-bottom: 18px;
  color: var(--ink-2);
  font-size: .95rem;
}

.review__author {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}

.review__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 54% 46% 48% 52% / 50% 52% 48% 50%;
  color: #fff;
  background: linear-gradient(140deg, var(--leaf-500), var(--leaf-700));
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
}

.review:nth-child(4n+2) .review__avatar { background: linear-gradient(140deg, var(--lav-500), #8f6fd0); }
.review:nth-child(4n+3) .review__avatar { background: linear-gradient(140deg, var(--peach-500), var(--peach-600)); }
.review:nth-child(4n+4) .review__avatar { background: linear-gradient(140deg, var(--butter-400), var(--butter-600)); }

.review__name {
  color: var(--ink);
  font-size: .93rem;
  font-weight: 800;
  line-height: 1.35;
}

.review__role {
  color: var(--muted);
  font-size: .8rem;
  line-height: 1.4;
}

/* ---------- Planos ---------- */
.plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 30px;
  margin-top: 56px;
}

.plan {
  position: relative;
  padding: 40px 34px;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: #fff;
  box-shadow: var(--shadow);
}

.plan--featured {
  padding-top: 34px;
  border: 2px solid var(--leaf-300);
  background:
    radial-gradient(120% 40% at 50% 0%, var(--leaf-50), transparent 60%),
    #fff;
  box-shadow: var(--shadow-lg);
}

/* casquinha decorativa no topo do plano destacado */
.plan--featured::before {
  content: "";
  position: absolute;
  top: -2px;
  right: 18px;
  left: 18px;
  height: 10px;
  border-radius: 0 0 var(--r) var(--r);
  background-image: radial-gradient(circle at 10px 0, var(--leaf-200) 8px, transparent 8.5px);
  background-size: 20px 10px;
  background-repeat: repeat-x;
  pointer-events: none;
}

.plan__tag {
  position: absolute;
  top: -18px;
  left: 50%;
  padding: 9px 22px;
  transform: translateX(-50%);
  border-radius: var(--pill);
  color: #fff;
  background: linear-gradient(135deg, var(--leaf-500), var(--leaf-700));
  box-shadow: 0 8px 20px rgba(33, 122, 92, .34);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  white-space: nowrap;
}

.plan__hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 210px;
  margin: 10px 0 22px;
  overflow: hidden;
  border-radius: var(--r);
}

.plan__hero img {
  width: 100%;
  height: auto;
  max-height: 260px;
  object-fit: contain;
}

.plan__label {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 14px;
  border-radius: var(--pill);
  color: var(--lav-700);
  background: var(--lav-100);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .13em;
}

.plan__name {
  margin-bottom: 16px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.42rem;
  font-weight: 700;
  font-variation-settings: 'SOFT' 70, 'WONK' 1;
  line-height: 1.2;
}

.plan__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 6px;
}

.plan__price s {
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 700;
}

.plan__price strong {
  color: var(--leaf-600);
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  font-variation-settings: 'SOFT' 80, 'WONK' 1, 'opsz' 144;
  line-height: 1;
}

.plan__price strong span {
  font-size: 1.3rem;
}

.plan__price em {
  color: var(--muted);
  font-size: .95rem;
  font-style: normal;
  font-weight: 700;
}

.plan__note {
  display: inline-block;
  margin-bottom: 22px;
  padding: 6px 14px;
  border-radius: var(--pill);
  color: var(--leaf-700);
  background: var(--leaf-100);
  font-size: .82rem;
  font-weight: 700;
}

.plan .check-list {
  margin-bottom: 28px;
}

.plan__release {
  margin-top: 14px;
  color: var(--muted);
  text-align: center;
  font-size: .8rem;
}

/* ---------- Garantia ---------- */
.guarantee {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding: 56px 44px;
  border: 2px dashed var(--butter-200);
  border-radius: var(--r-xl);
  background: linear-gradient(180deg, #fff 40%, var(--butter-100));
  box-shadow: var(--shadow-lg);
}

.guarantee__seal {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  margin: 0 auto 22px;
  border: 3px dashed var(--butter-200);
  border-radius: 50%;
  background: var(--butter-100);
  box-shadow: 0 12px 26px rgba(220, 157, 24, .22);
  font-size: 2.5rem;
  line-height: 1;
}

.guarantee .badge {
  color: var(--butter-700);
  border-color: var(--butter-200);
}

/* ---------- FAQ ---------- */
.faq {
  max-width: 820px;
  margin: 44px auto 0;
}

.faq__item {
  margin-bottom: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: #fff;
  box-shadow: var(--shadow-xs);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.faq__item.open {
  border-color: var(--leaf-200);
  box-shadow: var(--shadow);
}

.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  padding: 20px 22px;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-family: var(--font-display);
  font-size: 1.04rem;
  font-weight: 700;
  font-variation-settings: 'SOFT' 60, 'WONK' 1;
  text-align: left;
  line-height: 1.35;
  cursor: pointer;
}

.faq__q:focus-visible {
  outline: 3px solid var(--leaf-200);
  outline-offset: -3px;
}

.faq__ic {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 50%;
  color: var(--leaf-600);
  background: var(--leaf-50);
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  transition: transform .28s ease, background .2s ease, color .2s ease;
}

.faq__item.open .faq__ic {
  transform: rotate(135deg);
  color: #fff;
  background: var(--leaf-500);
}

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.faq__a p {
  padding: 0 22px 22px;
  color: var(--text);
  font-size: .95rem;
}

/* ---------- Rodapé ---------- */
.footer {
  position: relative;
  padding: 62px 0 56px;
  color: #c4d7ca;
  background: linear-gradient(180deg, #22412f, #142a1e);
}

.footer__brand {
  margin-bottom: 16px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  font-variation-settings: 'SOFT' 70, 'WONK' 1;
}

/* coraçãozinho de arremate */
.footer__brand::after {
  content: "♡";
  margin-left: 8px;
  color: var(--leaf-300);
  font-family: var(--font-body);
  font-size: 1.05rem;
}

.footer__disclaimer {
  max-width: 820px;
  margin: 0 auto 18px;
  color: #9bb2a3;
  font-size: .82rem;
  line-height: 1.7;
}

.footer__copy {
  color: #86998c;
  font-size: .82rem;
}

/* ============================================================
   BARRA FIXA (MOBILE)
   ============================================================ */
.stickybar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 900;
  display: none;
  align-items: center;
  gap: 14px;
  padding: 11px 14px;
  padding-bottom: calc(11px + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 252, 246, .96);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-top: 2px solid var(--leaf-100);
  box-shadow: 0 -12px 30px rgba(24, 82, 62, .16);
  visibility: hidden;
  transform: translateY(115%);
  transition: transform .3s cubic-bezier(.2, .8, .2, 1), visibility .3s;
}

/* fitinha ondulada no topo da barra */
.stickybar::before {
  content: "";
  position: absolute;
  top: -12px;
  right: 0;
  left: 0;
  height: 12px;
  background-image: radial-gradient(circle at 11px 12px, var(--leaf-100) 9px, transparent 9.5px);
  background-size: 22px 12px;
  background-repeat: repeat-x;
  pointer-events: none;
}

.stickybar.is-visible {
  visibility: visible;
  transform: none;
}

.stickybar__offer {
  flex-shrink: 0;
  line-height: 1.05;
}

.stickybar__label {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-family: var(--font-hand);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .01em;
}

.stickybar__price {
  display: block;
  color: var(--leaf-600);
  font-family: var(--font-display);
  font-size: 1.72rem;
  font-weight: 700;
  font-variation-settings: 'SOFT' 80, 'WONK' 1, 'opsz' 144;
  line-height: 1;
}

.stickybar__cta {
  flex: 1;
  min-width: 0;
  padding: 15px 18px;
  font-size: 1rem;
  text-align: center;
}

@media (max-width: 900px) {
  .stickybar { display: flex; }

  /* espaço para a barra não cobrir o fim do rodapé */
  .footer { padding-bottom: 122px; }
}

@media (max-width: 360px) {
  .stickybar { gap: 10px; padding-left: 11px; padding-right: 11px; }
  .stickybar__price { font-size: 1.5rem; }
  .stickybar__cta { padding: 14px 12px; font-size: .92rem; }
}

/* ---------- Movimento reduzido ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 980px) {
  .section__title { font-size: 2rem; }
  .hero__title { font-size: 2.5rem; }
  .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reviews { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .step:not(:last-child)::after { display: none; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .plans { grid-template-columns: 1fr; max-width: 520px; margin-right: auto; margin-left: auto; }
}

@media (max-width: 680px) {
  .section { padding: 62px 0; }
  .container { padding: 0 18px; }
  .hero { padding-top: 52px; }
  .hero__title { font-size: 2rem; }
  .hero__lead { font-size: 1.02rem; }
  .section__title { font-size: 1.7rem; }
  .section__sub { font-size: 1rem; }

  .grid--3,
  .grid--4,
  .reviews,
  .steps,
  .audience,
  .pain-grid {
    grid-template-columns: 1fr;
  }

  .hero__cta {
    flex-direction: column;
    width: 100%;
  }

  .hero__cta .btn {
    width: 100%;
    text-align: center;
  }

  .hero__features {
    align-items: stretch;
    flex-direction: column;
    text-align: left;
  }

  .hero__features li { width: 100%; }

  .audience__item { border-radius: var(--r); }
  .pain-box { padding: 36px 20px; }
  .gallery__item { width: 168px; height: 236px; }
  .gallery__track--h .gallery__item { width: 290px; height: 205px; }
  .plan { padding: 38px 22px; }
  .plan__tag { max-width: calc(100% - 28px); text-align: center; white-space: normal; }
  .plan__price strong { font-size: 2.6rem; }
  .guarantee { padding: 42px 22px; }
  .two-col__media::after { width: 88px; height: 22px; }
}

/* ============================================================
   MODAL DE UPSELL (Plano Essencial)
   ============================================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .28s ease, visibility .28s ease;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 42, 30, .60);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.modal__card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 470px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 42px 34px 30px;
  border: 2px solid var(--leaf-200);
  border-radius: var(--r-xl);
  background:
    radial-gradient(130% 60% at 50% 0%, var(--leaf-50), transparent 58%),
    #fff;
  box-shadow: var(--shadow-lg);
  text-align: center;
  transform: translateY(18px) scale(.96);
  transition: transform .3s cubic-bezier(.2, .8, .2, 1);
}

.modal.is-open .modal__card {
  transform: translateY(0) scale(1);
}

.modal__close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: var(--muted);
  background: transparent;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}

.modal__close:hover {
  color: var(--leaf-600);
  background: var(--leaf-50);
}

.modal__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 15px;
  border-radius: var(--pill);
  color: var(--butter-600);
  background: var(--butter-100);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.modal__title {
  margin-bottom: 12px;
  font-size: 1.62rem;
  font-weight: 700;
  font-variation-settings: 'SOFT' 80, 'WONK' 1, 'opsz' 96;
  line-height: 1.24;
}

.modal__title span {
  color: var(--leaf-600);
}

.modal__text {
  margin: 0 auto 22px;
  max-width: 380px;
  color: var(--text);
  font-size: .96rem;
}

.modal__text strong {
  color: var(--ink);
}

.modal__price {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 22px;
  padding: 18px 20px;
  border: 1px dashed var(--leaf-200);
  border-radius: var(--r);
  background: var(--leaf-50);
}

.modal__price-from,
.modal__price-to {
  font-size: .82rem;
  font-weight: 700;
  color: var(--muted);
  line-height: 1.4;
}

.modal__price-from s {
  color: var(--muted);
  font-size: 1.1rem;
}

.modal__price-to strong {
  display: inline-block;
  color: var(--leaf-600);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  font-variation-settings: 'SOFT' 80, 'WONK' 1;
}

.modal__price-arrow {
  color: var(--leaf-500);
  font-size: 1.4rem;
  font-weight: 800;
}

.modal__price-tag {
  position: absolute;
  top: -13px;
  right: 16px;
  padding: 5px 13px;
  border-radius: var(--pill);
  color: #fff;
  background: linear-gradient(135deg, var(--leaf-500), var(--leaf-700));
  box-shadow: 0 6px 14px rgba(33, 122, 92, .34);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .03em;
}

.modal__list-title {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: .88rem;
  font-weight: 800;
}

.modal__list {
  margin: 0 auto 26px;
  max-width: 330px;
  list-style: none;
  text-align: left;
}

.modal__list li {
  position: relative;
  padding: 6px 0 6px 30px;
  color: var(--ink-2);
  font-size: .92rem;
  font-weight: 700;
}

.modal__list li::before {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 21px;
  height: 21px;
  transform: translateY(-50%);
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(140deg, var(--leaf-500), var(--leaf-700));
  font-size: .68rem;
  font-weight: 800;
}

.modal__cta {
  font-size: 1.02rem;
}

/* botão secundário como hiperlink (visível, mas sem cara de botão) */
.modal__decline {
  display: inline-block;
  margin-top: 18px;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  transition: color .15s ease;
  /* O HTML fica em CAIXA ALTA; aqui só a exibição vira caixa baixa,
     com a inicial maiúscula. */
  text-transform: lowercase;
}

.modal__decline::first-letter {
  text-transform: uppercase;
}

.modal__decline:hover {
  color: var(--leaf-600);
}

@media (prefers-reduced-motion: reduce) {
  .modal,
  .modal__card {
    transition: none;
  }
}

@media (max-width: 480px) {
  .modal__card { padding: 40px 20px 26px; }
  .modal__title { font-size: 1.38rem; }
  .modal__price { gap: 12px; padding: 16px 14px; }
}
