/* ============================================================
   As Aventuras de Davi em Quadrinhos — Landing Page
   Estilos CSS
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Nunito+Sans:ital,wght@0,400;0,600;0,700;1,600&family=Poppins:wght@400;500;600;700;800&display=swap");

/* ============================================================
   As Aventuras de Davi em Quadrinhos — Landing Page
   Design system derived from the product's visual DNA:
   clinical paper, deep anatomical green, graphite ink, coral and amber
   study accents, technical atlas-inspired display type.
   ============================================================ */

:root {
  /* surfaces */
  --cream: #F6E8D7;
  --cream-2: #EDE0CD;
  --cream-3: #BF873F;
  --paper: #FFFFFF;
  --paper-soft: #FCF7F0;

  /* ink */
  --navy: #3D2614;
  --navy-deep: #25160A;
  --ink: #3D2918;
  --muted: #7D6652;

  /* accents */
  --teal: #BF873F;
  --teal-deep: #8F5C21;
  --coral: #BF873F;
  --coral-deep: #8F5C21;
  --gold: #BF873F;
  --gold-deep: #8F5C21;
  --gold-light: #F9DCB0;

  /* cta + states */
  --green: #1FA75C;
  --green-deep: #16894a;
  --green-glow: rgba(31, 167, 92, .35);
  --red: #B8322D;
  --red-deep: #7E2619;

  /* type */
  --font-display: 'Poppins', system-ui, sans-serif;
  --font-body: 'Poppins', system-ui, sans-serif;

  /* shape */
  --r-sm: 14px;
  --r: 22px;
  --r-lg: 34px;
  --pill: 999px;

  /* shadow */
  --sh-sm: 0 2px 8px rgba(60, 38, 18, .08);
  --sh: 0 10px 30px -12px rgba(60, 38, 18, .18);
  --sh-lg: 0 28px 60px -22px rgba(60, 38, 18, .26);
  --sh-card: 0 14px 34px -16px rgba(60, 38, 18, .20);

  --maxw: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.08;
  margin: 0;
  letter-spacing: -.01em;
}

p {
  margin: 0;
  text-wrap: pretty;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
}

section {
  position: relative;
}

.eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 14px;
  color: var(--teal-deep);
}

/* ---------- decorative dotted divider ---------- */
.dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 4px 0;
}

.dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  opacity: .55;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(17px, 2.2vw, 22px);
  line-height: 1.15;
  text-align: center;
  padding: 20px 38px;
  border: none;
  border-radius: var(--pill);
  cursor: pointer;
  background: var(--green);
  color: #fff;
  box-shadow: 0 12px 26px -10px var(--green-glow), inset 0 -3px 0 rgba(0, 0, 0, .13);
  transition: transform .18s cubic-bezier(.3, 1.4, .5, 1), box-shadow .18s, filter .18s;
  position: relative;
  text-wrap: balance;
}

.btn:hover {
  transform: translateY(-3px) scale(1.015);
  filter: brightness(1.05);
  box-shadow: 0 20px 38px -12px var(--green-glow), inset 0 -3px 0 rgba(0, 0, 0, .13);
}

.btn:active {
  transform: translateY(0) scale(.99);
}

.btn .arr {
  font-size: 1.1em;
  transform: translateX(0);
  transition: transform .2s;
}

.btn:hover .arr {
  transform: translateX(4px);
}

.btn--lg {
  padding: 24px 46px;
}

.btn--block {
  display: flex;
  width: 100%;
}

.btn--ghost {
  background: var(--paper);
  color: var(--navy);
  box-shadow: inset 0 0 0 2.5px var(--navy);
}

.btn--ghost:hover {
  background: var(--navy);
  color: #fff;
}

.btn--coral {
  background: var(--coral);
  box-shadow: 0 12px 26px -10px rgba(158, 36, 31, .45), inset 0 -3px 0 rgba(0, 0, 0, .13);
}

.btn-pulse {
  animation: pulse 2.6s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 12px 26px -10px var(--green-glow), inset 0 -3px 0 rgba(0, 0, 0, .13), 0 0 0 0 var(--green-glow);
  }

  50% {
    box-shadow: 0 12px 26px -10px var(--green-glow), inset 0 -3px 0 rgba(0, 0, 0, .13), 0 0 0 14px rgba(31, 167, 92, 0);
  }
}

/* ============================================================
   1 · TOP OFFER BAR
   ============================================================ */
.offerbar {
  background: var(--red);
  color: #fff;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: .04em;
  font-size: 15px;
  padding: 11px 16px;
  position: relative;
  z-index: 60;
}

.offerbar b {
  color: #fff;
  font-weight: 600;
}

/* ============================================================
   2 · HERO
   ============================================================ */
.hero {
  background: linear-gradient(180deg, var(--paper-soft) 0%, var(--cream) 100%);
  padding: 50px 0 60px;
  overflow: hidden;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--paper);
  color: var(--teal-deep);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13.5px;
  padding: 6px 15px;
  border-radius: var(--pill);
  box-shadow: var(--sh-sm);
  border: 1.5px solid rgba(191, 135, 63, .3);
}

.badge-pill .dot {
  width: 7px;
  height: 7px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(31, 167, 92, .18);
}

.hero h1 {
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -0.02em;
  margin: 20px auto 26px;
  max-width: 24ch;
  text-wrap: balance;
}

.hero h1 .hl {
  color: var(--teal-deep);
}

.hero .lead {
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--ink);
  max-width: 56ch;
  margin: 0 auto 26px;
}

.hero-art {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 auto 32px;
}

.hero-art img {
  width: 100%;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 36px 50px rgba(60, 38, 18, .24));
  animation: floaty 6s ease-in-out infinite;
}

@keyframes floaty {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

.hero-copy {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}

.bullets {
  list-style: none;
  padding: 0;
  margin: 0 auto 30px;
  display: grid;
  width: fit-content;
  max-width: 100%;
  gap: 13px;
  text-align: left;
}

.bullets li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  font-weight: 600;
  color: var(--navy);
  font-size: 17px;
}

.hero-copy>.btn {
  display: flex;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
}

.check {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--green);
  display: grid;
  place-items: center;
  margin-top: 1px;
  box-shadow: 0 4px 10px -3px var(--green-glow);
}

.check svg {
  width: 14px;
  height: 14px;
  stroke: #fff;
}

.delivery {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  text-align: left;
}

.delivery .ico {
  display: inline-flex;
  gap: 6px;
}

.delivery .ico span {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: var(--paper);
  box-shadow: var(--sh-sm);
}

.delivery .ico svg {
  width: 17px;
  height: 17px;
}

/* ============================================================
   SECTION SCAFFOLD
   ============================================================ */
.sec {
  padding: 78px 0;
}

.sec--cream2 {
  background: var(--cream-2);
}

.sec--plans-cream {
  background: var(--cream);
}

.sec-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 46px;
}

.sec-head h2 {
  font-size: clamp(27px, 3.4vw, 42px);
  font-weight: 600;
  text-wrap: balance;
}

.sec-head p {
  color: var(--muted);
  margin-top: 14px;
  font-size: 18px;
}

/* ============================================================
   3 · ACTIVITY GALLERY (auto-scroll marquee)
   ============================================================ */
.marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.marquee--mt {
  margin-top: 24px;
}

.marquee-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: marquee-right 34s linear infinite;
}

.marquee-track.is-reverse {
  animation-direction: reverse;
}

.marquee-track.is-fast {
  animation-duration: 14s !important;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee-right {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.gal-card {
  flex: 0 0 auto;
  width: clamp(460px, 48vw, 720px);
  background: var(--paper);
  border-radius: var(--r);
  box-shadow: var(--sh-card);
  overflow: hidden;
  border: 1px solid rgba(60, 38, 18, .06);
  transition: transform .25s, box-shadow .25s;
}

.gal-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--sh-lg);
}

.gal-card .ph {
  aspect-ratio: 1491/1055;
  overflow: hidden;
  background: var(--cream-2);
}

.gal-card .ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* photos marquee */
.photo-marquee .marquee-track {
  animation-duration: 38s;
}

.photo-card {
  flex: 0 0 auto;
  width: clamp(460px, 48vw, 720px);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--sh-card);
  border: 4px solid #fff;
  background: var(--cream-2);
  transition: transform .25s, box-shadow .25s;
}

.photo-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--sh-lg);
}

.photo-card .ph {
  aspect-ratio: 1448/1086;
  overflow: hidden;
}

.photo-card .ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.navbtn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: #fff;
  color: var(--navy);
  box-shadow: var(--sh);
  display: grid;
  place-items: center;
  transition: transform .15s, background .15s, color .15s;
}

.navbtn:hover {
  background: var(--navy);
  color: #fff;
  transform: scale(1.06);
}

.navbtn svg {
  width: 20px;
  height: 20px;
}

.marquee-ctrl {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 22px;
}

.marquee-ctrl .navbtn {
  width: 46px;
  height: 46px;
}

/* ============================================================
   4 · FEATURE CARDS (icon grid)
   ============================================================ */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.feat-card {
  background: var(--paper);
  border-radius: var(--r);
  padding: 30px 26px;
  box-shadow: var(--sh-card);
  text-align: center;
  border: 1px solid rgba(60, 38, 18, .05);
  transition: transform .2s;
}

.feat-card:hover {
  transform: translateY(-6px);
}

.feat-ico {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  background: rgba(191, 135, 63, .14);
}

.feat-ico svg {
  width: 32px;
  height: 32px;
  stroke: var(--teal-deep);
}

.feat-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 9px;
}

.feat-card p {
  color: var(--muted);
  font-size: 15.5px;
}

.feat-close {
  text-align: center;
  margin-top: 40px;
}

.feat-close .big {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  font-size: clamp(22px, 3vw, 30px);
  margin-bottom: 26px;
}

/* ============================================================
   5 · BENEFITS BLOCK
   ============================================================ */
.benefit-block {
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: var(--r-lg);
  padding: clamp(36px, 5vw, 68px);
  color: #fff;
  box-shadow: var(--sh-lg);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.benefit-block::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(191, 135, 63, .22), transparent 70%);
  top: -120px;
  right: -90px;
}

.benefit-block::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 220, 176, .16), transparent 70%);
  bottom: -130px;
  left: -80px;
}

.benefit-block h2 {
  color: #fff;
  font-size: clamp(24px, 3.2vw, 38px);
  font-weight: 600;
  max-width: 24ch;
  margin: 0 auto;
  position: relative;
}

.benefit-block .blist {
  list-style: none;
  padding: 0;
  margin: 34px auto 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 38px;
  max-width: 880px;
  position: relative;
  text-align: left;
}

.benefit-block .blist li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 17.5px;
  font-weight: 600;
  background: rgba(255, 255, 255, .06);
  padding: 16px 20px;
  border-radius: var(--r-sm);
}

.benefit-block .blist li:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: 56%;
  margin: 0 auto;
}

.benefit-block .check {
  background: var(--green);
  box-shadow: 0 4px 10px -3px var(--green-glow);
}

.benefit-block .check svg {
  stroke: #fff;
}

/* ============================================================
   7 · URGENCY BANNER
   ============================================================ */
.urgency {
  background: linear-gradient(120deg, var(--coral-deep) 0%, var(--coral) 100%);
  color: #fff;
  text-align: center;
  padding: 60px 0;
  box-shadow: var(--sh);
  position: relative;
  overflow: hidden;
}

.urgency::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, rgba(255, 255, 255, .05) 0 22px, transparent 22px 44px);
  pointer-events: none;
}

.urgency .wrap {
  position: relative;
  z-index: 1;
}

.urgency h2 {
  color: #fff;
  font-size: clamp(24px, 3.6vw, 40px);
  font-weight: 600;
  max-width: 20ch;
  margin: 0 auto 14px;
  position: relative;
}

.urgency p {
  font-size: 18px;
  opacity: .95;
  margin-bottom: 30px;
  position: relative;
}

.urgency .btn {
  background: #fff;
  color: var(--coral);
  position: relative;
}

.urgency .btn:hover {
  background: var(--navy);
  color: #fff;
}

/* ============================================================
   8 · FOR WHOM (6 check cards)
   ============================================================ */
.whom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.whom-card {
  background: var(--paper);
  border-radius: var(--r);
  padding: 28px 26px;
  box-shadow: var(--sh-card);
  border: 1px solid rgba(60, 38, 18, .05);
  transition: transform .2s, box-shadow .2s;
  position: relative;
}

.whom-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
}

.whom-card .check {
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
}

.whom-card .check svg {
  width: 18px;
  height: 18px;
}

.whom-card h3 {
  font-size: 18.5px;
  font-weight: 600;
  margin-bottom: 9px;
  line-height: 1.25;
}

.whom-card p {
  color: var(--muted);
  font-size: 15.5px;
}

/* ============================================================
   9 · EVERYTHING YOU RECEIVE
   ============================================================ */
.receive-card {
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: clamp(30px, 4vw, 56px);
  box-shadow: var(--sh-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(60, 38, 18, .05);
  position: relative;
  overflow: hidden;
  max-width: 860px;
  margin: 0 auto;
}

.receive-card .art {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin-bottom: 8px;
}

.receive-card .art img {
  margin: 0 auto;
  filter: drop-shadow(0 24px 40px rgba(60, 38, 18, .24));
}

.flash-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--green);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: var(--pill);
  box-shadow: 0 10px 22px -10px var(--green-glow);
  text-transform: uppercase;
  letter-spacing: .03em;
  margin-bottom: 22px;
}

.receive-card .sub {
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 600;
  margin: 4px 0 6px;
  font-size: clamp(19px, 2.4vw, 24px);
}

.receive-card .txt {
  color: var(--muted);
  margin-bottom: 30px;
}

.recv-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 30px;
  text-align: left;
  max-width: 720px;
}

.recv-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 600;
  color: var(--navy);
  font-size: 16px;
}

.recv-list li:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.recv-list .check {
  width: 24px;
  height: 24px;
}

.recv-list .check svg {
  width: 13px;
  height: 13px;
}

/* ============================================================
   10 · BONUS
   ============================================================ */
.bonus-tease {
  text-align: center;
  margin-bottom: 14px;
}

.bonus-tease .t1 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--coral);
  letter-spacing: .12em;
  font-size: 16px;
}

.bonus-tease .t2 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  font-size: clamp(30px, 4.5vw, 52px);
  line-height: 1;
  margin: 4px 0 10px;
}

.bonus-tease .t3 {
  color: var(--muted);
  font-size: 18px;
}

.bonus-flag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 18px auto 44px;
  background: linear-gradient(120deg, var(--coral-deep), var(--coral));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  padding: 12px 26px;
  border-radius: var(--pill);
  box-shadow: var(--sh);
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.bonus-card {
  background: var(--paper);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-card);
  border: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform .22s, box-shadow .22s;
}

.bonus-card::after {
  content: "";
  position: absolute;
  inset: 6px;
  pointer-events: none;
  z-index: 6;
  border: 2.6px dashed rgba(191, 135, 63, .85);
  border-radius: calc(var(--r-lg) - 6px);
}

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

.bonus-card .top {
  background: linear-gradient(180deg, var(--cream), var(--paper-soft));
  padding: 24px 22px 6px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bonus-num {
  background: var(--navy);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  padding: 7px 18px;
  border-radius: var(--pill);
  letter-spacing: .05em;
  margin-bottom: 16px;
  box-shadow: 0 10px 20px -10px var(--green-glow);
  position: relative;
  z-index: 2;
}

.bonus-card .top img {
  margin: 0 auto;
  filter: drop-shadow(0 16px 26px rgba(60, 38, 18, .22));
  max-height: 230px;
  width: auto;
}

.bonus-card .body {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.bonus-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.2;
}

.bonus-card .desc {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 16px;
}

.bonus-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  gap: 9px;
}

.bonus-card ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}

.bonus-card ul .check {
  width: 22px;
  height: 22px;
}

.bonus-card ul .check svg {
  width: 12px;
  height: 12px;
}

.value-tag {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(191, 135, 63, .10);
  border: 1.5px dashed var(--navy);
  border-radius: var(--r-sm);
  padding: 12px;
  font-family: var(--font-display);
  font-weight: 600;
}

.value-tag .strike {
  color: var(--muted);
  text-decoration: line-through;
  font-size: 16px;
}

.value-tag .free {
  color: var(--navy);
  font-size: 19px;
}

/* ============================================================
   11 · PLANS / PRICING
   ============================================================ */
.urg-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  padding: 10px 22px;
  border-radius: var(--pill);
  box-shadow: 0 10px 22px -10px var(--green-glow);
  letter-spacing: .03em;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .75;
  }
}

.plans-grid {
  display: grid;
  grid-template-columns: 1fr 1.18fr;
  gap: 30px;
  align-items: start;
  max-width: 980px;
  margin: 0 auto;
}

.plan {
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: 38px 34px;
  box-shadow: var(--sh-card);
  border: 1.5px solid rgba(60, 38, 18, .08);
  display: flex;
  flex-direction: column;
  position: relative;
  text-align: center;
}

.plan h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: .03em;
  text-align: center;
}

.plan .plan-sub {
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  margin: 4px 0 16px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.plan .art {
  text-align: center;
  margin: 8px 0 16px;
}

.plan .art img {
  max-height: 225px;
  width: auto;
  margin: 0 auto;
  filter: drop-shadow(0 16px 26px rgba(60, 38, 18, .18));
}

.plan ul {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  gap: 10px;
  align-content: start;
  text-align: left;
}

.plan ul li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  text-align: left;
  line-height: 1.42;
}

.plan ul li .li-txt {
  flex: 1 1 auto;
  min-width: 0;
}

.plan ul .check {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  margin-top: 1px;
}

.plan ul .check svg {
  width: 12px;
  height: 12px;
}

.price-old {
  color: var(--muted);
  font-size: 15px;
  text-align: center;
}

.price-old s {
  color: var(--coral);
}

.price-now {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--green);
  font-size: clamp(42px, 6vw, 60px);
  line-height: 1;
  margin: 4px 0;
  text-align: center;
}

.price-inst {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 8px;
  text-align: center;
}

.save-chip {
  display: inline-flex;
  align-self: center;
  background: rgba(31, 167, 92, .12);
  color: var(--green-deep);
  font-family: var(--font-display);
  font-weight: 600;
  padding: 7px 16px;
  border-radius: var(--pill);
  font-size: 14px;
  margin-bottom: 22px;
}

.plan--feature {
  border: 2.5px solid var(--green);
  background: linear-gradient(180deg, #ffffff 0%, #FAF0E4 100%);
  box-shadow: 0 36px 70px -24px var(--green-glow);
  transform: scale(1.04);
  z-index: 3;
  padding-top: 46px;
}

.plan--feature::before {
  content: "⚡ MAIS VENDIDO";
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  padding: 11px 30px;
  border-radius: var(--pill);
  white-space: nowrap;
  box-shadow: 0 14px 26px -8px var(--green-glow);
  letter-spacing: .04em;
}

.plan--feature .mini-urg {
  display: inline-flex;
  align-self: center;
  background: rgba(191, 135, 63, .14);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12.5px;
  padding: 6px 14px;
  border-radius: var(--pill);
  margin-bottom: 14px;
}

.plan-flag3x {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  padding: 11px 18px;
  border-radius: var(--pill);
  margin: 10px 0 20px;
  box-shadow: 0 10px 22px -10px var(--green-glow);
  letter-spacing: .02em;
}

.plan--feature .art {
  text-align: center;
  margin: 6px 0 18px;
}

.plan--feature .art img {
  max-height: 200px;
  width: auto;
  margin: 0 auto;
  filter: drop-shadow(0 18px 30px rgba(60, 38, 18, .20));
}

.gift {
  color: var(--coral);
}

.bonus-line {
  background: rgba(191, 135, 63, 0.08);
  border-radius: 10px;
  padding: 7px 10px;
  border: 1px solid rgba(191, 135, 63, 0.16);
}

.bonus-line strong {
  font-weight: 800;
  color: var(--navy);
}

.bonus-icon {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(191, 135, 63, 0.20);
  color: var(--teal-deep);
  margin-top: 1px;
}

.bonus-icon svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
}

.social-arrow {
  text-align: center;
  margin: 30px auto 4px;
  max-width: 600px;
}

.social-arrow .pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  padding: 12px 26px;
  border-radius: var(--pill);
  box-shadow: var(--sh);
}

.social-arrow .pill b {
  color: #F9DCB0;
  flex: 0 0 auto;
  white-space: nowrap;
}

.social-arrow .pill .copy {
  min-width: 0;
  text-align: left;
  line-height: 1.2;
}

.social-arrow .down {
  display: block;
  margin: 10px auto 0;
  width: 30px;
  height: 30px;
  color: var(--navy);
  animation: bob 1.6s ease-in-out infinite;
}

.plan>.social-arrow {
  margin: 18px 0 0;
  max-width: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.plan>.social-arrow .pill {
  flex: 1 1 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  padding: 10px 18px;
  font-size: 14px;
  border-radius: var(--pill);
  background: var(--navy);
  color: #fff;
  box-shadow: var(--sh);
}

.plan>.social-arrow .pill b {
  color: #F9DCB0;
  font-size: 17px;
  font-weight: 700;
}

.plan>.social-arrow .down {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  margin: 0;
  color: var(--green);
}

@keyframes bob {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(7px);
  }
}

.pay-seals {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 18px;
}

.pay-seals span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  color: var(--muted);
  background: var(--cream-2);
  padding: 7px 13px;
  border-radius: 9px;
  letter-spacing: .02em;
}

.pay-seals img {
  display: block;
  width: min(100%, 480px);
  height: auto;
  margin: 0 auto;
}

.plans-close {
  text-align: center;
  max-width: 620px;
  margin: 46px auto 0;
}

.plans-close p {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--navy);
  font-size: clamp(19px, 2.4vw, 24px);
  line-height: 1.35;
}

.plans-close p+p {
  color: var(--muted);
  font-weight: 400;
  font-size: 18px;
  margin-top: 8px;
}

/* ============================================================
   12 · TESTIMONIALS
   ============================================================ */
.testi-shell {
  max-width: 760px;
  margin: 0 auto;
}

.testi-viewport {
  overflow: hidden;
  border-radius: var(--r-lg);
}

.testi-track {
  display: flex;
  transition: transform .5s cubic-bezier(.5, 0, .2, 1);
}

.testi-card {
  flex: 0 0 100%;
  padding: 6px;
}

.testi-inner {
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 46px);
  box-shadow: var(--sh-card);
  text-align: center;
  border: 1px solid rgba(60, 38, 18, .05);
}

.stars {
  display: flex;
  gap: 5px;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--coral);
}

.stars svg {
  width: 24px;
  height: 24px;
}

.testi-quote {
  font-size: clamp(18px, 2.4vw, 23px);
  color: var(--navy);
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 22px;
}

.testi-author {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  font-size: 18px;
}

.testi-role {
  color: var(--muted);
  font-size: 15px;
}

.testi-ctrl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 26px;
}

.dots-nav {
  display: flex;
  gap: 9px;
}

.dots-nav button {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: none;
  background: rgba(191, 135, 63, .25);
  cursor: pointer;
  padding: 0;
  transition: all .2s;
}

.dots-nav button.on {
  background: var(--teal);
  width: 30px;
  border-radius: 6px;
}

/* ============================================================
   13 · GUARANTEE
   ============================================================ */
.guarantee {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.seal {
  display: grid;
  place-items: center;
}

.seal-img {
  width: 100%;
  max-width: 290px;
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 34px rgba(60, 38, 18, .18));
  transition: transform .3s ease;
}

.seal-img:hover {
  transform: scale(1.03) rotate(-2deg);
}

.guarantee h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 600;
  margin-bottom: 18px;
}

.guarantee p {
  color: var(--ink);
  margin-bottom: 12px;
}

.guarantee .gl {
  list-style: none;
  padding: 0;
  margin: 8px 0 16px;
  display: grid;
  gap: 8px;
}

.guarantee .gl li {
  padding-left: 22px;
  position: relative;
  color: var(--ink);
}

.guarantee .gl li::before {
  content: "•";
  position: absolute;
  left: 4px;
  color: var(--coral);
  font-weight: 700;
}

.guarantee .emph {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  font-size: 19px;
  margin: 4px 0;
}

.guarantee .stack {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 14px 0;
}

.guarantee .stack span {
  background: var(--cream-2);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--pill);
  font-size: 15px;
}

/* ============================================================
   14 · HOW ACCESS WORKS (steps)
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: step;
}

.step-card {
  background: var(--paper);
  border-radius: var(--r);
  padding: 30px 26px;
  box-shadow: var(--sh-card);
  border: 1px solid rgba(60, 38, 18, .05);
  position: relative;
}

.step-num {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--teal);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  box-shadow: 0 8px 18px -6px rgba(191, 135, 63, .4);
}

.step-card h3 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 10px;
}

.step-card p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 8px;
}

.step-card ul {
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
  display: grid;
  gap: 7px;
}

.step-card ul li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy);
}

.step-card ul .check {
  width: 19px;
  height: 19px;
}

.step-card ul .check svg {
  width: 11px;
  height: 11px;
}

.step-card ul li.note {
  font-weight: 400;
  color: var(--muted);
}

.step-card ul li.note .check {
  visibility: hidden;
}

/* ============================================================
   15 · FAQ ACCORDION
   ============================================================ */
.faq {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  background: var(--paper);
  border-radius: var(--r);
  box-shadow: var(--sh-sm);
  border: 1px solid rgba(60, 38, 18, .06);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  font-size: 18px;
}

.faq-q .tog {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--cream-2);
  display: grid;
  place-items: center;
  transition: transform .3s, background .25s;
}

.faq-q .tog svg {
  width: 16px;
  height: 16px;
  stroke: var(--teal-deep);
}

.faq-item.open .faq-q .tog {
  transform: rotate(45deg);
  background: var(--teal);
}

.faq-item.open .faq-q .tog svg {
  stroke: #fff;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.faq-a p {
  padding: 0 26px 24px;
  color: var(--ink);
  font-size: 16.5px;
}

/* ============================================================
   16 · FOOTER
   ============================================================ */
.footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, .7);
  padding: 52px 0;
  text-align: center;
  font-size: 13.5px;
  line-height: 1.7;
}

.footer .wrap {
  max-width: 820px;
}

.footer p {
  margin-bottom: 14px;
}

.footer .cr {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
}

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.2, .7, .3, 1);
}

[data-reveal].in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-art img,
  .btn-pulse,
  .urg-badge,
  .social-arrow .down {
    animation: none !important;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .feat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .bonus-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }

  .recv-list {
    grid-template-columns: 1fr;
  }

  .benefit-block .blist {
    grid-template-columns: 1fr;
  }

  .benefit-block .blist li:last-child:nth-child(odd) {
    max-width: none;
  }

  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .plan--feature {
    transform: none;
  }

  .plan>.social-arrow {
    flex-direction: column;
  }

  .plan>.social-arrow .pill {
    width: 100%;
  }

  .plan>.social-arrow .down {
    rotate: 90deg;
  }

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

  .guarantee {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .seal {
    margin: 0 auto;
  }

  .guarantee .gl li {
    text-align: left;
  }

  .guarantee .stack {
    justify-content: center;
  }

  .gal-card,
  .photo-card {
    width: clamp(620px, 80vw, 840px);
    min-width: 580px;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 17px;
  }

  .sec {
    padding: 56px 0;
  }

  .feat-grid,
  .whom-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .marquee {
    margin-left: -18px;
    margin-right: -18px;
    width: calc(100% + 36px);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 2%, #000 98%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 2%, #000 98%, transparent);
  }

  .gal-card,
  .photo-card {
    width: clamp(680px, 175vw, 980px) !important;
    min-width: 650px !important;
    border-radius: 22px;
  }

  .photo-card {
    border-width: 4px;
  }

  .marquee-track {
    gap: 22px;
  }

  .offerbar {
    font-size: clamp(14.5px, 4.2vw, 16.5px);
    font-weight: 600;
    line-height: 1.4;
    padding: 16px 18px;
    letter-spacing: .02em;
  }

  .offerbar b {
    font-weight: 800;
  }

  .wrap {
    padding: 0 18px;
  }

  .hero {
    padding: 40px 0 48px;
  }

  .hero-grid,
  .hero-copy,
  .hero-art,
  .hero h1,
  .badge-pill,
  .delivery {
    min-width: 0;
    max-width: 100%;
  }

  .badge-pill {
    font-size: clamp(11.5px, 3.1vw, 12.5px);
    padding: 5px 12px;
    gap: 6px;
    justify-content: center;
    text-align: center;
    max-width: 95%;
    line-height: 1.3;
  }

  .hero h1 {
    font-size: clamp(21px, 5.8vw, 25px);
    font-weight: 700;
    line-height: 1.34;
    letter-spacing: -0.015em;
    max-width: 100%;
    margin: 16px auto 20px;
    overflow-wrap: normal;
    text-wrap: balance;
  }

  .hero .lead {
    font-size: 17px;
    max-width: 100%;
  }

  .marquee--mt {
    margin-top: 14px;
  }

  .hero-art {
    max-width: min(480px, 96vw);
    margin: 0 auto 28px;
  }

  .hero-art img {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 380px) {
  .gal-card,
  .photo-card {
    width: clamp(620px, 170vw, 900px) !important;
    min-width: 600px !important;
    border-radius: 20px;
  }
  .offerbar {
    font-size: 14px;
    padding: 14px 12px;
    line-height: 1.35;
  }
  .hero h1 {
    font-size: 20px;
    line-height: 1.32;
  }
  .hero-art {
    max-width: 100%;
  }
  .badge-pill {
    font-size: 11px;
    padding: 4px 10px;
    gap: 5px;
  }
}