/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17px; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== VARIABLES ===== */
:root {
  --brand-dark:    #364e3e;
  --brand-yellow:  #e8c547;
  --brand-yellow-light: #f5e89a;
  --brand-yellow-soft:  #fdf8e7;
  --brand-orange:  #c8553d;
  --brand-orange-dark: #a8401f;
  --bg:            #faf9f4;
  --bg-warm:       #f5f2eb;
  --white:         #ffffff;
  --text:          #1e2a24;
  --text-muted:    #5a6354;
  --text-light:    #9ca3af;
  --border:        #e2ddd0;
  --card-bg:       #ffffff;
  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     24px;
  --radius-xl:     32px;
  --shadow-sm:     0 2px 8px rgba(0,0,0,.06);
  --shadow-md:     0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:     0 8px 40px rgba(0,0,0,.14);
  --font-display:  'Fredoka', sans-serif;
  --font-body:     'Nunito', sans-serif;
  --transition:    .25s cubic-bezier(.4,0,.2,1);
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  font-size: 1rem;
}

/* ===== UTILITY ===== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.container--wide { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section--sm { padding: 60px 0; }
.highlight { color: var(--brand-yellow); }
.highlight-orange { color: var(--brand-orange); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* Scroll animations */
.fade-up { opacity: 0; transform: translateY(40px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in { opacity: 0; transition: opacity .7s ease; }
.fade-in.visible { opacity: 1; }
.stagger-child { opacity: 0; transform: translateY(30px); transition: opacity .5s ease, transform .5s ease; }
.stagger-child.visible { opacity: 1; transform: translateY(0); }

/* ===== CTA BUTTONS ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 16px 32px; border-radius: var(--radius-lg); font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; transition: var(--transition); line-height: 1; }
.btn--primary { background: var(--brand-yellow); color: var(--brand-dark); box-shadow: 0 4px 20px rgba(232,197,71,.4); }
.btn--primary:hover { background: #f0d050; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(232,197,71,.5); }
.btn--primary:active { transform: translateY(0); }
.btn--primary-dark { background: var(--brand-dark); color: var(--brand-yellow); }
.btn--primary-dark:hover { background: #2a3e31; transform: translateY(-2px); }
.btn--outline { border: 2px solid var(--brand-yellow); color: var(--brand-yellow); background: transparent; }
.btn--outline:hover { background: rgba(232,197,71,.1); }
.btn--lg { font-size: 1.25rem; padding: 20px 44px; }
.btn--full { width: 100%; }
.btn--arrow::after { content: "→"; margin-left: 4px; transition: transform .2s; }
.btn--arrow:hover::after { transform: translateX(4px); }

/* ===== HEADER ===== */
.header {
  position: sticky; top: 0; z-index: 100;
  background: var(--brand-dark);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: box-shadow .3s;
}
.header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.3); }
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; max-width: 1100px; margin: 0 auto; gap: 12px;
}
.header__logo { display: flex; align-items: center; gap: 10px; }
.header__badge {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--brand-yellow); color: var(--brand-dark);
  font-family: var(--font-display); font-weight: 700; font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
}
.header__name { color: #fff; font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; }
.header__promo {
  background: rgba(232,197,71,.15); border: 1px solid rgba(232,197,71,.3);
  color: var(--brand-yellow); font-size: .85rem; font-weight: 700;
  padding: 5px 12px; border-radius: 20px; white-space: nowrap;
}
.header__cta { font-size: .95rem; padding: 10px 22px; }

/* ===== HERO ===== */
.hero {
  background: var(--brand-dark);
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.hero__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  max-width: 1100px; margin: 0 auto; padding: 0 20px;
}
.hero__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.hero__tag {
  background: rgba(232,197,71,.15); border: 1px solid rgba(232,197,71,.3);
  color: var(--brand-yellow); font-size: .85rem; font-weight: 700;
  padding: 5px 14px; border-radius: 20px; letter-spacing: .04em;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero__title span { color: var(--brand-yellow); }
.hero__sub {
  color: rgba(255,255,255,.75);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.7;
}
.hero__cta-wrap { display: flex; flex-direction: column; gap: 16px; }
.hero__social-proof { display: flex; align-items: center; gap: 12px; margin-top: 4px; }
.hero__avatars { display: flex; }
.hero__avatars img {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid var(--brand-dark);
  margin-right: -10px; object-fit: cover;
}
.hero__avatars-more {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--brand-yellow); color: var(--brand-dark);
  font-size: .7rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--brand-dark); margin-right: -10px;
}
.hero__social-text { color: rgba(255,255,255,.85); font-size: .95rem; margin-left: 14px; }
.hero__social-text strong { color: var(--brand-yellow); }
.hero__stars { color: var(--brand-yellow); font-size: .95rem; margin-bottom: 2px; }
.hero__image-wrap { position: relative; }
.polaroid {
  background: #fff; padding: 12px 12px 40px;
  box-shadow: var(--shadow-lg);
  transform: rotate(-2deg);
  border-radius: 4px;
}
.polaroid img { width: 100%; border-radius: 2px; }

/* ===== HERO MOCKUP IMAGE ===== */
.hero__mockup-img {
  text-align: center; margin-top: 12px;
}
.hero__mockup-img img {
  max-width: 260px; width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  margin: 0 auto;
  display: block;
}

/* ===== PERSONAS ===== */
.personas { background: var(--bg); }
.personas__title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 700; text-align: center;
  margin-bottom: 8px;
}
.personas__sub { text-align: center; color: var(--text-muted); margin-bottom: 48px; font-size: 1.1rem; }
.personas__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.persona-card {
  background: var(--white); border: 2px solid var(--border);
  border-radius: var(--radius-md); padding: 28px 22px;
  text-align: center; transition: var(--transition);
  cursor: default;
}
.persona-card:hover { border-color: var(--brand-yellow); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.persona-card__icon { font-size: 2.4rem; margin-bottom: 10px; }
.persona-card__label { font-family: var(--font-display); font-size: .78rem; font-weight: 700; letter-spacing: .1em; color: var(--brand-orange); text-transform: uppercase; margin-bottom: 6px; }
.persona-card--yellow .persona-card__label { color: var(--brand-dark); }
.persona-card__title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--brand-dark); margin-bottom: 10px; line-height: 1.3; }
.persona-card__desc { font-size: .95rem; color: var(--text-muted); line-height: 1.6; }
.persona-card--yellow { border-color: var(--brand-yellow); background: var(--brand-yellow-soft); }

/* ===== BENEFITS ===== */
.benefits { background: var(--bg-warm); }
.benefits__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.benefits__image { position: relative; }
.benefits__image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.benefits__label {
  position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%);
  background: var(--brand-dark); color: #fff;
  font-family: var(--font-display); font-size: .95rem; font-weight: 600;
  padding: 14px 28px; border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  white-space: nowrap; text-align: center;
  z-index: 2;
}
.benefits__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 700; margin-bottom: 32px; line-height: 1.3;
}
.benefit-list { display: flex; flex-direction: column; gap: 22px; }
.benefit-item { display: flex; gap: 14px; align-items: flex-start; }
.benefit-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(54,78,62,.1); color: var(--brand-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; flex-shrink: 0; margin-top: 2px;
}
.benefit-item__text h4 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--brand-dark); margin-bottom: 4px; }
.benefit-item__text p { font-size: .97rem; color: var(--text-muted); line-height: 1.6; }

/* ===== HOW IT WORKS ===== */
.howto { background: var(--brand-dark); }
.howto__title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 700; text-align: center;
  color: #fff; margin-bottom: 12px;
}
.howto__sub { text-align: center; color: rgba(255,255,255,.65); margin-bottom: 56px; font-size: 1.1rem; }
.howto__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md); padding: 28px 22px; text-align: center;
  position: relative; transition: var(--transition);
}
.step-card:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }
.step-card__number {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--brand-yellow); color: var(--brand-dark);
  font-family: var(--font-display); font-weight: 700; font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.step-card__icon { font-size: 2rem; margin-bottom: 12px; }
.step-card__title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.step-card__desc { font-size: .95rem; color: rgba(255,255,255,.7); line-height: 1.6; }

/* ===== GALLERY ===== */
.gallery { background: var(--bg); overflow: hidden; }
.gallery__title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 700; text-align: center; margin-bottom: 8px;
}
.gallery__sub { text-align: center; color: var(--text-muted); margin-bottom: 40px; font-size: 1.1rem; }
.gallery__track-wrap {
  width: 100%; overflow: hidden; position: relative;
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.gallery__track {
  display: flex; gap: 16px;
  width: max-content;
  animation: galleryScroll 40s linear infinite;
  cursor: grab;
}
.gallery__track:active { cursor: grabbing; animation-play-state: paused; }
.gallery__track.paused { animation-play-state: paused; }
.gallery__item {
  width: 220px; height: 220px; flex-shrink: 0;
  border-radius: var(--radius-md); overflow: hidden;
  position: relative; box-shadow: var(--shadow-sm);
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery__item:hover img { transform: scale(1.07); }
.gallery__item-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.7));
  color: #fff; font-size: .85rem; font-weight: 700;
  padding: 20px 12px 10px; text-align: center;
}
@keyframes galleryScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== WHAT YOU RECEIVE ===== */
.receive { background: var(--bg-warm); }
.receive__title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 700; text-align: center; margin-bottom: 8px;
}
.receive__sub { text-align: center; color: var(--text-muted); margin-bottom: 48px; font-size: 1.1rem; }
.receive__features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 32px; }
.receive__card {
  background: var(--white); border: 2px solid var(--border);
  border-radius: var(--radius-md); padding: 28px 24px; text-align: center;
  transition: var(--transition);
}
.receive__card:hover { border-color: var(--brand-yellow); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.receive__card-icon { font-size: 2.5rem; margin-bottom: 16px; }
.receive__card-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; color: var(--brand-dark); }
.receive__card-desc { font-size: .95rem; color: var(--text-muted); line-height: 1.6; }
.receive__info-box {
  background: var(--brand-dark); color: #fff;
  border-radius: var(--radius-md); padding: 32px 36px;
  display: flex; align-items: center; gap: 32px;
}
.receive__info-count { font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: var(--brand-yellow); line-height: 1; white-space: nowrap; }
.receive__info-label { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; margin-bottom: 6px; }
.receive__info-desc { font-size: .97rem; color: rgba(255,255,255,.75); line-height: 1.6; }

/* ===== COMMERCIAL PERMISSION ===== */
.commercial { background: var(--brand-dark); }
.commercial__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brand-yellow); color: var(--brand-dark);
  font-family: var(--font-display); font-size: .95rem; font-weight: 700;
  padding: 8px 18px; border-radius: 20px; margin-bottom: 20px;
}
.commercial__title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 700; color: #fff; margin-bottom: 12px;
}
.commercial__sub { color: rgba(255,255,255,.75); margin-bottom: 40px; font-size: 1.1rem; max-width: 650px; line-height: 1.65; }
.commercial__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 40px; }
.price-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md); padding: 24px 18px; text-align: center;
  transition: var(--transition);
}
.price-card:hover { background: rgba(255,255,255,.12); transform: translateY(-4px); }
.price-card__tag {
  display: inline-block; background: var(--brand-yellow); color: var(--brand-dark);
  font-size: .75rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 20px; margin-bottom: 12px;
}
.price-card__name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.price-card__examples { font-size: .88rem; color: rgba(255,255,255,.6); margin-bottom: 16px; line-height: 1.5; }
.price-card__sells { font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 4px; }
.price-card__range { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; color: var(--brand-yellow); }
.commercial__stats { display: flex; flex-wrap: wrap; gap: 32px; justify-content: center; padding-top: 40px; border-top: 1px solid rgba(255,255,255,.1); }
.stat { text-align: center; }
.stat__value { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--brand-yellow); line-height: 1; }
.stat__label { font-size: .9rem; color: rgba(255,255,255,.65); margin-top: 4px; }

/* ===== BONUSES ===== */
.bonuses { background: var(--brand-orange); }
.bonuses__eyebrow {
  text-align: center; color: rgba(255,255,255,.85);
  font-size: .9rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; margin-bottom: 12px;
}
.bonuses__title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 700; text-align: center; color: #fff; margin-bottom: 8px;
}
.bonuses__sub { text-align: center; color: rgba(255,255,255,.85); margin-bottom: 48px; font-size: 1.1rem; }
.bonuses__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.bonus-card {
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-md); overflow: hidden; transition: var(--transition);
}
.bonus-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,.2); }
.bonus-card__img { width: 100%; height: 200px; object-fit: cover; }
.bonus-card__body { padding: 20px; }
.bonus-card__tag {
  display: inline-block; background: rgba(255,255,255,.2);
  color: #fff; font-size: .8rem; font-weight: 700;
  padding: 3px 10px; border-radius: 20px; margin-bottom: 10px;
}
.bonus-card__title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.bonus-card__desc { font-size: .95rem; color: rgba(255,255,255,.85); line-height: 1.6; margin-bottom: 14px; }
.bonus-card__pricing {
  display: flex; flex-direction: column; gap: 2px;
  border-top: 1px solid rgba(255,255,255,.2); padding-top: 12px; margin-top: 4px;
}
.bonus-card__from { font-size: .88rem; color: rgba(255,255,255,.55); text-decoration: line-through; }
.bonus-card__free { font-size: 1rem; color: var(--brand-yellow); font-weight: 700; }
.bonus-card__free strong { font-family: var(--font-display); font-size: 1.15rem; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--bg); }
.testimonials__title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 700; text-align: center; margin-bottom: 12px;
}
.testimonials__sub { text-align: center; color: var(--text-muted); margin-bottom: 48px; font-size: 1.1rem; }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}
.testimonials__grid .tcard:nth-child(4),
.testimonials__grid .tcard:nth-child(5) {
  grid-column: span 1;
}
.tcard {
  background: var(--white); border: 2px solid var(--border);
  border-radius: var(--radius-md); padding: 26px;
  transition: var(--transition); display: flex; flex-direction: column; gap: 16px;
}
.tcard:hover { border-color: var(--brand-yellow); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tcard__stars { color: var(--brand-yellow); font-size: 1.05rem; }
.tcard__quote { font-size: 1rem; line-height: 1.7; color: var(--text); flex: 1; }
.tcard__author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.tcard__avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.tcard__avatar-placeholder {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--brand-dark); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  flex-shrink: 0;
}
.tcard__name { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--brand-dark); }
.tcard__role { font-size: .88rem; color: var(--text-muted); }

/* ===== PRICING ===== */
.pricing { background: var(--brand-yellow-soft); }
.pricing__title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 700; text-align: center; margin-bottom: 8px;
}
.pricing__sub { text-align: center; color: var(--text-muted); margin-bottom: 12px; font-size: 1.1rem; }
.pricing__urgency {
  text-align: center; color: var(--brand-orange); font-weight: 700;
  font-size: .95rem; margin-bottom: 48px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.pricing__grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 24px; max-width: 820px; margin: 0 auto; align-items: start; }
.plan-card {
  background: var(--white); border: 2px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  transition: var(--transition);
}
.plan-card--featured {
  border-color: var(--brand-yellow);
  box-shadow: 0 0 0 4px rgba(232,197,71,.2);
  position: relative;
}
.plan-card__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--brand-yellow); color: var(--brand-dark);
  font-family: var(--font-display); font-size: .88rem; font-weight: 700;
  padding: 5px 18px; border-radius: 20px; white-space: nowrap;
}
.plan-card__logo { width: 80px; margin-bottom: 16px; }
.plan-card__name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--brand-dark); margin-bottom: 4px; }
.plan-card__tagline { font-size: .95rem; color: var(--text-muted); margin-bottom: 20px; }
.plan-card__price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px; }
.plan-card__currency { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--brand-dark); }
.plan-card__amount { font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: var(--brand-dark); line-height: 1; }
.plan-card__cents { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; color: var(--brand-dark); }
.plan-card__period { font-size: .9rem; color: var(--text-muted); margin-bottom: 6px; }
.plan-card__installment { font-size: .9rem; color: var(--text-muted); margin-bottom: 24px; }
.plan-card__installment strong { color: var(--brand-orange); }
.plan-card__divider { border: none; border-top: 1px solid var(--border); margin: 20px 0; }
.plan-card__features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.plan-card__feature { display: flex; align-items: flex-start; gap: 10px; font-size: .97rem; line-height: 1.5; }
.plan-card__check { color: #22a06b; font-size: 1rem; flex-shrink: 0; margin-top: 1px; }

/* ===== GUARANTEE ===== */
.guarantee { background: var(--bg-warm); }
.guarantee__inner { display: flex; gap: 48px; align-items: center; max-width: 800px; margin: 0 auto; }
.guarantee__shield { flex-shrink: 0; }
.guarantee__shield-icon {
  width: 100px; height: 100px;
  background: var(--brand-dark); color: var(--brand-yellow);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 2.8rem; box-shadow: var(--shadow-md);
}
.guarantee__title { font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; margin-bottom: 14px; }
.guarantee__text { color: var(--text-muted); line-height: 1.75; font-size: 1.1rem; }

/* ===== FAQ ===== */
.faq { background: var(--bg); }
.faq__title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 700; text-align: center; margin-bottom: 48px;
}
.faq__list { max-width: 740px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq__item { background: var(--white); border: 2px solid var(--border); border-radius: var(--radius-md); overflow: hidden; transition: border-color .2s; }
.faq__item.open { border-color: var(--brand-yellow); }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px; font-family: var(--font-display); font-size: 1.05rem; font-weight: 700;
  color: var(--brand-dark); cursor: pointer; background: none; text-align: left; gap: 12px;
}
.faq__q:hover { background: rgba(0,0,0,.02); }
.faq__q-icon {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: var(--brand-yellow); color: var(--brand-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 700; transition: transform .3s;
}
.faq__item.open .faq__q-icon { transform: rotate(45deg); }
.faq__a {
  display: none; padding: 0 24px 22px; font-size: 1rem;
  color: var(--text-muted); line-height: 1.75;
}
.faq__item.open .faq__a { display: block; }

/* ===== FOOTER ===== */
.footer { background: var(--brand-dark); padding: 48px 0 24px; }
.footer__inner {
  max-width: 1100px; margin: 0 auto; padding: 0 20px;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px;
}
.footer__brand {}
.footer__logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer__desc { color: rgba(255,255,255,.65); font-size: .95rem; line-height: 1.65; max-width: 280px; }
.footer__col-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: rgba(255,255,255,.9); margin-bottom: 14px; }
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__link { color: rgba(255,255,255,.6); font-size: .95rem; transition: color .2s; }
.footer__link:hover { color: var(--brand-yellow); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  max-width: 1100px; margin: 0 auto; padding-left: 20px; padding-right: 20px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.footer__copy { color: rgba(255,255,255,.5); font-size: .88rem; }
.footer__legal { display: flex; gap: 16px; }
.footer__legal a { color: rgba(255,255,255,.5); font-size: .88rem; transition: color .2s; }
.footer__legal a:hover { color: rgba(255,255,255,.8); }

/* ===== STICKY MOBILE CTA ===== */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: var(--brand-dark);
  border-top: 2px solid var(--brand-yellow);
  padding: 12px 20px; display: none;
  align-items: center; justify-content: space-between; gap: 12px;
  box-shadow: 0 -4px 20px rgba(0,0,0,.3);
}
.sticky-cta.visible { display: flex; }
.sticky-cta__text { color: #fff; font-size: .95rem; }
.sticky-cta__text strong { color: var(--brand-yellow); font-family: var(--font-display); font-size: 1.15rem; }
.sticky-cta__btn { background: var(--brand-yellow); color: var(--brand-dark); font-family: var(--font-display); font-weight: 700; font-size: 1rem; padding: 12px 22px; border-radius: var(--radius-lg); white-space: nowrap; flex-shrink: 0; }

/* ===== COUNTDOWN ===== */
.countdown { display: flex; gap: 8px; align-items: center; }
.countdown__unit { text-align: center; }
.countdown__num { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; line-height: 1; }
.countdown__lbl { font-size: .72rem; opacity: .75; margin-top: 2px; }
.countdown__sep { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; line-height: 1; margin-top: -4px; }

/* ===== SECTION HEADER ===== */
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(54,78,62,.1); border: 1px solid rgba(54,78,62,.2);
  color: var(--brand-dark); font-size: .85rem; font-weight: 700;
  padding: 5px 14px; border-radius: 20px; margin-bottom: 14px;
  letter-spacing: .04em; text-transform: uppercase;
}

/* ===== RESPONSIVE — TABLET ===== */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 36px; }
  .hero__image-wrap { display: none; }
  .personas__grid { grid-template-columns: repeat(2, 1fr); }
  .benefits__inner { grid-template-columns: 1fr; display: flex; flex-direction: column; }
  .benefits__image { order: 2; display: block; margin-top: 32px; margin-bottom: 28px; }
  .benefits__image img { max-height: 340px; width: 100%; object-fit: cover; }
  .benefits__label { left: 50%; transform: translateX(-50%); white-space: normal; width: max-content; max-width: 90%; }
  .benefits__text { order: 1; }
  .howto__grid { grid-template-columns: repeat(2, 1fr); }
  .commercial__grid { grid-template-columns: repeat(2, 1fr); }
  .bonuses__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .pricing__grid { grid-template-columns: 1fr; max-width: 440px; }
  .footer__inner { grid-template-columns: 1fr; gap: 24px; }
}

/* ===== RESPONSIVE — MOBILE ===== */
@media (max-width: 600px) {
  html { font-size: 16px; }
  .section { padding: 56px 0; }
  .hero { padding: 44px 0 60px; }
  .hero__sub { font-size: 1rem; }
  .personas__grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .receive__features { grid-template-columns: 1fr; }
  .receive__info-box { flex-direction: column; gap: 16px; padding: 24px; }
  .commercial__grid { grid-template-columns: 1fr 1fr; }
  .howto__grid { grid-template-columns: 1fr 1fr; }
  .guarantee__inner { flex-direction: column; gap: 24px; text-align: center; }
  .footer__inner { grid-template-columns: 1fr; }
  .sticky-cta { display: none !important; }
  .btn--lg { font-size: 1.1rem; padding: 18px 32px; }
  .header__promo { display: none; }
}
