:root {
  --bg: #fbfefd;
  --bg-mint: #edf8f3;
  --bg-dark: #053d36;
  --teal: #0f8f73;
  --teal-2: #063f38;
  --teal-light: #dff5ed;
  --gold: #b88a2f;
  --gold-light: #f3dfaa;
  --gold-dark: #7b5a19;
  --navy: #122b3a;
  --navy-2: #193d51;
  --red: #bf2f34;
  --ink: #16262f;
  --muted: #607078;
  --line: rgba(15, 143, 115, .16);
  --white: #ffffff;
  --shadow-sm: 0 10px 26px rgba(18, 43, 58, .07);
  --shadow: 0 18px 42px rgba(18, 43, 58, .12);
  --shadow-deep: 0 28px 70px rgba(7, 31, 38, .22);
  --container: 1160px;
  --radius: 8px;
}

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

html { scroll-behavior: smooth; }

body {
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(15, 143, 115, .035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(15, 143, 115, .035) 1px, transparent 1px),
    var(--bg);
  background-size: 44px 44px;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: Oswald, Inter, sans-serif;
  font-weight: 700;
  line-height: 1.08;
  color: var(--navy);
  letter-spacing: 0;
}

p { text-wrap: pretty; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }

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

.center { text-align: center; }

/* ─── TOPBAR ─────────────────────────────────── */
.topbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 46px;
  padding: 10px 20px;
  background: rgba(255,255,255,.92);
  color: var(--muted);
  font-size: .77rem;
  border-bottom: 1px solid rgba(15, 143, 115, .18);
  box-shadow: 0 8px 24px rgba(18, 43, 58, .05);
}

.topbar strong {
  color: var(--teal-2);
  font-family: Oswald, Inter, sans-serif;
  font-size: .9rem;
  letter-spacing: .04em;
}

.topbar span {
  padding-left: 16px;
  border-left: 1px solid rgba(15, 143, 115, .22);
}

/* ─── HERO (dark) ────────────────────────────── */
.hero {
  position: relative;
  background:
    linear-gradient(90deg, rgba(15, 143, 115, .07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(15, 143, 115, .07) 1px, transparent 1px),
    #f8fcfa;
  background-size: 52px 52px;
  padding: 56px 0 64px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 9px;
  pointer-events: none;
  background: linear-gradient(90deg, var(--teal), var(--teal-2), var(--gold), var(--teal));
}

.hero::after {
  content: "";
  position: absolute;
  top: 54px;
  right: 8%;
  width: min(42vw, 520px);
  height: 64%;
  pointer-events: none;
  border: 1px solid rgba(15, 143, 115, .16);
  border-radius: 16px;
  transform: rotate(-2deg);
  background: rgba(255, 255, 255, .44);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  gap: clamp(28px, 4vw, 46px);
  align-items: center;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 660px;
  margin: 0 auto;
  text-align: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 7px 14px;
  background: var(--white);
  border: 1px solid rgba(15, 143, 115, .22);
  border-radius: 30px;
  color: var(--teal-2);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero__badge::before {
  content: "+";
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  background: var(--teal);
  border-radius: 50%;
  color: var(--white);
  font-size: .8rem;
  font-weight: 900;
  line-height: 1;
  flex-shrink: 0;
}

.hero__title {
  max-width: 640px;
  margin: 0 auto 14px;
  color: var(--navy);
  font-size: clamp(2.35rem, 4vw, 3.2rem);
  text-wrap: balance;
}

.hero .accent {
  color: var(--teal);
  position: relative;
}

.hero__lead {
  max-width: 590px;
  margin: 0 auto 18px;
  color: var(--muted);
  font-size: 1rem;
}

.hero__cta {
  margin-bottom: 22px;
}

.hero__proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  max-width: 560px;
  margin: 0 auto 12px;
  border: 1px solid rgba(15, 143, 115, .18);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, .84);
  box-shadow: var(--shadow-sm);
}

.hero__proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  padding: 14px 10px;
  text-align: center;
  background: rgba(255,255,255,.76);
}

.hero__proof-item + .hero__proof-item {
  border-left: 1px solid rgba(15, 143, 115, .14);
}

.hero__proof-item strong {
  color: var(--teal-2);
  font-family: Oswald, Inter, sans-serif;
  font-size: 1.8rem;
  line-height: 1;
}

.hero__proof-item:nth-child(2) strong { color: var(--teal); }
.hero__proof-item:nth-child(3) strong { color: var(--gold-dark); }

.hero__proof-item span {
  margin-top: 6px;
  color: var(--muted);
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.hero__tags {
  max-width: 560px;
  margin: 0 auto;
  color: var(--teal-2);
  font-size: .68rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
}

.hero__visual {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 10px;
  border-radius: 16px;
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(15,143,115,.16);
  box-shadow: 0 22px 58px rgba(18,43,58,.12);
}

.hero__visual::before {
  content: "PRODUTOS PRINCIPAIS";
  position: absolute;
  top: 0;
  right: 30px;
  z-index: 3;
  transform: translateY(-50%);
  padding: 8px 14px;
  border-radius: 6px;
  background: var(--teal-2);
  color: var(--white);
  font-family: Oswald, Inter, sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
}

.hero__mockup {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.96);
  border-radius: 14px;
  background: #f7fbf9;
  box-shadow: 0 22px 54px rgba(18,43,58,.18);
}

.hero__mockup img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

/* ─── SECTION BASE ───────────────────────────── */
.section {
  position: relative;
  padding: 96px 0;
  background: var(--bg);
}

.section--mint {
  background: linear-gradient(180deg, #f4fbf8 0%, var(--bg-mint) 100%);
  border-top: 1px solid rgba(15, 143, 115, .1);
  border-bottom: 1px solid rgba(15, 143, 115, .1);
}

.section--dark {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.035) 1px, transparent 1px),
    var(--teal-2);
  background-size: 48px 48px;
  color: var(--white);
}

.section--dark .section__title { color: var(--white); }
.section--dark h3 { color: rgba(255,255,255,.92); }
.section--dark .section__sub { color: rgba(255,255,255,.6); }

.section__title {
  max-width: 860px;
  margin: 0 auto 16px;
  font-size: 2.8rem;
  text-wrap: balance;
}

.section__title::after {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  margin: 18px auto 0;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  border-radius: 2px;
}

.section__title--left { margin-left: 0; text-align: left; }
.section__title--left::after { margin-left: 0; }

.section__sub {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1rem;
}

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

/* ─── BADGE ──────────────────────────────────── */
.badge,
.pricing-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 16px;
  padding: 6px 14px;
  background: var(--teal-light);
  color: var(--teal-2);
  border-radius: 30px;
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.badge::before {
  content: "＋";
  font-size: .72rem;
  opacity: .8;
}

.section--dark .badge {
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.18);
  color: var(--white);
}

.section--dark .badge::before { display: none; }

/* ─── BUTTONS ────────────────────────────────── */
.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 6px 0 var(--teal-2), 0 16px 28px rgba(15, 143, 115, .24);
}

.btn--primary:hover {
  background: #11a382;
  box-shadow: 0 4px 0 var(--teal-2), 0 12px 22px rgba(15, 143, 115, .2);
}

.btn--outline {
  border-color: var(--teal);
  color: var(--teal);
  background: transparent;
}

.btn--outline:hover {
  background: var(--teal);
  color: var(--white);
}

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

.btn--3d {
  position: relative;
  overflow: hidden;
}

.btn--3d::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 44%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.5), transparent);
  transform: skewX(-18deg);
  animation: ctaShine 3.4s ease-in-out infinite;
}

@keyframes ctaShine {
  0%, 50% { left: -120%; }
  80%, 100% { left: 150%; }
}

/* ─── INFINITE GALLERY ───────────────────────── */
.gallery {
  margin: 44px 0;
  overflow: hidden;
}

.gallery__track {
  display: flex;
  width: max-content;
  gap: 18px;
  padding: 0 18px;
  animation: slideLeft 38s linear infinite;
}

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

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

.gallery__item {
  display: grid;
  width: 248px;
  aspect-ratio: 4 / 5;
  padding: 0;
  place-items: center;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.28);
  background: transparent;
  box-shadow: 0 14px 30px rgba(0,0,0,.24);
}

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

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

.gallery:hover .gallery__track { animation-play-state: paused; }

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

/* ─── CONTENT FEATURE CARDS ──────────────────── */
.grid {
  display: grid;
  gap: 18px;
  margin-top: 48px;
}

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

.feature-card {
  position: relative;
  padding: 26px 24px;
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--teal);
}

.feature-card:nth-child(3n+2)::before { background: var(--gold); }
.feature-card:nth-child(3n)::before { background: var(--red); }

.feature-card__icon {
  display: inline-flex;
  min-width: 52px;
  height: 36px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding: 0 10px;
  background: var(--teal-2);
  color: var(--white);
  font-family: Oswald, Inter, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 4px;
}

.feature-card h3 { font-size: 1.12rem; margin-bottom: 9px; }
.feature-card p { color: var(--muted); font-size: .88rem; }
.feature-card--highlight {
  background: linear-gradient(180deg, #ffffff 0%, #ecf8f3 100%);
  box-shadow: var(--shadow);
}

/* ─── AUDIENCE ───────────────────────────────── */
.audience {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
  margin-top: 44px;
}

.audience__item {
  position: relative;
  padding: 16px 18px 16px 54px;
  border-bottom: 1px solid rgba(15, 143, 115, .15);
  color: var(--navy);
  font-size: .9rem;
  font-weight: 650;
}

.audience__item::before {
  content: "✓";
  position: absolute;
  top: 15px;
  left: 12px;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  font-size: .72rem;
  font-weight: 900;
}

/* ─── PAIN BLOCK ─────────────────────────────── */
.pain-box {
  padding: 58px 46px;
  background: var(--teal-2);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 0 0 1px rgba(15,143,115,.18), var(--shadow-deep);
}

.pain-box .section__title { color: var(--white); }
.pain-box .section__sub { color: rgba(255,255,255,.6); }

.pain-box__icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin: 0 auto 16px;
  place-items: center;
  background: var(--white);
  color: var(--teal);
  border-radius: 50%;
  font-family: Oswald, Inter, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
}

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

.pain-item {
  position: relative;
  padding: 16px 16px 16px 48px;
  background: rgba(255,255,255,.08);
  border-left: 3px solid var(--teal);
  border-radius: 0 6px 6px 0;
  color: rgba(255,255,255,.84);
  font-size: .82rem;
  font-weight: 650;
}

.pain-item::before {
  content: "×";
  position: absolute;
  top: 14px;
  left: 16px;
  color: #ffc2bd;
  font-size: 1.1rem;
  font-weight: 900;
}

/* ─── BUNDLE ─────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
  gap: 60px;
  align-items: center;
}

.two-col__media {
  position: relative;
}

.two-col__media::after {
  content: "8 MATERIAIS ESTRATÉGICOS";
  position: absolute;
  right: -10px;
  bottom: -14px;
  padding: 8px 14px;
  background: var(--teal-2);
  color: var(--white);
  font-family: Oswald, Inter, sans-serif;
  font-size: .7rem;
  font-weight: 700;
  border-radius: 4px;
}

.two-col__media img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 22px 54px rgba(18,43,58,.16);
}

.check-list { margin-top: 28px; list-style: none; }

.check-list li {
  position: relative;
  padding: 11px 0 11px 38px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: .9rem;
  font-weight: 650;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  top: 10px;
  left: 0;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  font-size: .62rem;
  font-weight: 900;
}

/* ─── MAIN PRODUCTS ──────────────────────────── */
.products-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7faf9 100%);
}

.product-showcase {
  position: relative;
  max-width: 1120px;
  margin-top: 42px;
  padding: 28px 28px 18px;
  overflow: hidden;
  border: 1px solid rgba(18,43,58,.1);
  border-radius: 12px;
  background: #f8faf9;
  box-shadow: 0 24px 60px rgba(18,43,58,.1);
}

.product-showcase::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(219,235,229,.62));
}

.product-showcase img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 980px);
  margin: 0 auto;
  filter: drop-shadow(0 24px 20px rgba(18,43,58,.12));
}

.product-showcase__caption {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: -4px;
  color: var(--muted);
  font-size: .78rem;
  text-align: center;
}

.product-showcase__caption strong {
  color: var(--teal-2);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.product-trio {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.product-trio__cta {
  margin-top: 40px;
}

.ptrio-card {
  border-radius: 8px;
  border: 1px solid rgba(18,43,58,.11);
  border-top: 3px solid var(--teal);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(18,43,58,.07);
  transition: transform .22s ease, box-shadow .22s ease;
}

.ptrio-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.ptrio-card__body {
  height: 100%;
  padding: 26px 28px 28px;
  display: grid;
  grid-template-columns: 156px minmax(0, 1fr);
  grid-template-areas:
    "media top"
    "media title"
    "media lead"
    "list list"
    "meta meta";
  column-gap: 24px;
  align-content: start;
}

.ptrio-card__product-image {
  grid-area: media;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(18,43,58,.12);
  border-radius: 6px;
  background: #f8fbfa;
  box-shadow: 0 12px 26px rgba(18,43,58,.15);
}

.ptrio-card__top {
  grid-area: top;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  margin-bottom: 16px;
}

.ptrio-card__tag {
  padding: 4px 10px;
  background: #edf7f3;
  color: var(--teal-2);
  font-size: .63rem;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
  border-radius: 4px;
}

.ptrio-card h3 {
  grid-area: title;
  font-size: 1.32rem;
  margin-bottom: 10px;
}

.ptrio-card__lead {
  grid-area: lead;
  color: var(--muted);
  font-size: .9rem;
  margin-bottom: 0;
}

.ptrio-card__list {
  grid-area: list;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.ptrio-card__list li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-size: .8rem;
  font-weight: 600;
}

.ptrio-card__list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 900;
}

.ptrio-card__meta {
  grid-area: meta;
  font-size: .72rem;
  font-weight: 800;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: .05em;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  margin-top: 0;
}

/* ─── DELIVERY STEPS ─────────────────────────── */
.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 52px;
}

.steps::before {
  content: "";
  position: absolute;
  top: 27px;
  right: 8%;
  left: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal-light), var(--teal), var(--teal-2), var(--gold));
}

.step {
  position: relative;
  z-index: 1;
  padding: 0 12px 20px;
  text-align: center;
}

.step__num {
  display: grid;
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  place-items: center;
  background: var(--teal);
  color: var(--white);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--teal);
  font-family: Oswald, Inter, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.step h3 { font-size: .95rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .78rem; }

/* ─── DIFFERENTIALS ──────────────────────────── */
.review {
  min-height: 220px;
  padding: 28px;
  border-radius: 8px;
  border-top: 5px solid var(--teal);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.review__stars {
  margin-bottom: 16px;
  color: var(--teal);
  font-family: Oswald, Inter, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
}

.review__text {
  margin-bottom: 20px;
  color: var(--ink);
  font-size: .9rem;
}

.review__name {
  color: var(--teal-2);
  font-size: .68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ─── PRICING ────────────────────────────────── */
.pricing-section--clean {
  background: #f3f7f5;
  border-top: 1px solid rgba(18,43,58,.08);
  border-bottom: 1px solid rgba(18,43,58,.08);
}

.pricing-intro .section__title { color: var(--navy); }

.pricing-intro__sub {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
}

.pricing-kicker {
  background: #dff1ea;
  color: var(--teal-2);
  border: 1px solid rgba(15,143,115,.16);
}

.pricing-kicker::before { display: none; }

.plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 1060px;
  margin-top: 52px;
  align-items: stretch;
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid rgba(18,43,58,.12);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(18,43,58,.1);
}

.plan--featured {
  border: 2px solid var(--teal-2);
  transform: translateY(-10px);
  box-shadow: 0 24px 64px rgba(18,43,58,.16), 0 0 0 5px rgba(15,143,115,.08);
}

.plan__ribbon {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  padding: 6px 16px;
  background: var(--gold);
  color: var(--white);
  font-size: .62rem;
  font-weight: 900;
  border-radius: 20px;
  letter-spacing: .06em;
}

.plan__eyebrow {
  margin-bottom: 8px;
  color: var(--teal);
  font-size: .65rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.plan--featured .plan__eyebrow { color: var(--teal); }

.plan__name {
  margin-bottom: 10px;
  font-size: 1.8rem;
}

.plan__summary {
  min-height: 68px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: .86rem;
}

.plan__media {
  display: grid;
  width: 100%;
  aspect-ratio: 16 / 10;
  margin-bottom: 22px;
  background: var(--bg-mint);
  border-radius: 8px;
}

.plan__media--stage {
  position: relative;
  display: block;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(15,143,115,.14);
  background:
    radial-gradient(circle at 50% 34%, rgba(15,143,115,.16), transparent 42%),
    linear-gradient(180deg, #ffffff 0%, #eef8f3 100%);
  background-size: 30px 30px;
  box-shadow: inset 0 -32px 0 rgba(15,143,115,.06);
  border-radius: 8px;
}

.plan__media--stage::before {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -15%;
  left: -8%;
  z-index: 0;
  height: 45%;
  background: rgba(15, 143, 115, .12);
  clip-path: polygon(0 32%, 100% 0, 100% 100%, 0 100%);
}

.plan__media--stage::after {
  position: absolute;
  right: 12px;
  bottom: 10px;
  z-index: 8;
  padding: 6px 10px;
  background: var(--teal-2);
  color: var(--white);
  border-radius: 4px;
  font-family: Oswald, Inter, sans-serif;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.plan__media--basic-stage::after { content: "4 PRODUTOS PRINCIPAIS"; }
.plan__media--complete-stage::after { content: "KIT COMPLETO - 8 MATERIAIS"; }

.plan__main-product-mockup {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.plan__asset {
  position: absolute;
  object-fit: contain;
  box-shadow: 0 16px 34px rgba(18,43,58,.24), 0 3px 8px rgba(18,43,58,.12);
  border-radius: 4px;
  filter: saturate(1.03) contrast(1.01);
  background: #fffaf0;
}

.plan__asset--maps,
.plan__asset--apostila {
  top: 10%;
  width: 60%;
  aspect-ratio: 1;
  border: 3px solid rgba(255,251,242,.9);
  object-position: top;
}

.plan__asset--maps {
  left: -1%;
  z-index: 2;
  transform: rotate(-4deg) translateY(4%);
}

.plan__asset--apostila {
  right: -1%;
  z-index: 3;
  transform: rotate(4deg);
}

.plan__asset--main-kit {
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  transform: none;
}

.plan__media--complete-stage {
  aspect-ratio: 4 / 3;
}

.plan__asset--bonus {
  top: 52%;
  z-index: 4;
  width: 26.5%;
  aspect-ratio: 1;
  border: 3px solid rgba(255,251,242,.95);
  object-position: top;
}

.plan__asset--bonus-1 { left: 1%; transform: rotate(-5deg) translateY(5%); }
.plan__asset--bonus-2 { left: 25%; transform: rotate(-2deg); }
.plan__asset--bonus-3 { left: 49%; transform: rotate(2deg); }
.plan__asset--bonus-4 { right: 1%; transform: rotate(5deg) translateY(5%); }

.plan__price-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 96px;
  margin-bottom: 20px;
  padding: 14px 18px;
  background: var(--bg-mint);
  border-radius: 8px;
  border-left: 4px solid var(--teal);
}

.plan--featured .plan__price-box { border-left-color: var(--gold); }

.plan__old-price {
  color: #90938f;
  font-size: .76rem;
  text-decoration: line-through;
}

.plan__price-main {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.plan__price-main strong {
  color: var(--teal);
  font-family: Oswald, Inter, sans-serif;
  font-size: 3.25rem;
  line-height: 1;
}

.plan--featured .plan__price-main strong { color: var(--red); }

.plan__price-main small {
  margin-top: 4px;
  color: var(--muted);
  font-size: .64rem;
  font-weight: 800;
}

.plan__compact-title {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: .68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.plan__compact-list {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
  list-style: none;
}

.plan__compact-list li {
  position: relative;
  min-height: 40px;
  padding: 10px 10px 10px 38px;
  background: #f5fbf8;
  border-radius: 6px;
  color: var(--ink);
  font-size: .81rem;
  font-weight: 700;
}

.plan__compact-list li::before {
  content: "✓";
  position: absolute;
  top: 9px;
  left: 10px;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  font-size: .58rem;
}

.plan .btn { margin-top: auto; }

.plan__microcopy {
  margin-top: 12px;
  color: var(--muted);
  font-size: .64rem;
  font-weight: 700;
  text-align: center;
}

.pricing-trust {
  display: flex;
  justify-content: center;
  gap: 14px 32px;
  margin-top: 32px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 800;
}

.pricing-trust span::before {
  content: "✓ ";
  color: var(--teal);
}

/* ─── GUARANTEE ──────────────────────────────── */
.guarantee {
  max-width: 880px;
  margin: 0 auto;
  padding: 52px 56px;
  border: 1px solid rgba(15,143,115,.15);
  border-left: 5px solid var(--teal);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff 0%, #f2f8f5 100%);
  box-shadow: 0 18px 48px rgba(18,43,58,.08);
}

.guarantee__seal {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  place-items: center;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(15,143,115,.15);
  font-size: 1.5rem;
  font-weight: 900;
}

.guarantee__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.guarantee__steps span {
  padding: 12px 14px;
  border: 1px solid rgba(15,143,115,.13);
  border-radius: 6px;
  background: rgba(255,255,255,.82);
  color: var(--ink);
  font-size: .76rem;
  font-weight: 700;
}

.guarantee__steps strong {
  color: var(--teal);
}

/* ─── FAQ ────────────────────────────────────── */
.faq { max-width: 880px; margin-top: 44px; }

.faq__item {
  border-bottom: 1px solid rgba(15,143,115,.12);
}

.faq__q {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 2px;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-family: Inter, sans-serif;
  font-size: .96rem;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq__ic {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  place-items: center;
  background: var(--bg-mint);
  color: var(--teal);
  border: 1px solid var(--teal-light);
  border-radius: 50%;
  font-size: 1.1rem;
  transition: transform .2s ease, background .2s ease;
}

.faq__item.open .faq__ic {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
  transform: rotate(45deg);
}

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

.faq__a p {
  padding: 0 48px 22px 2px;
  color: var(--muted);
  font-size: .9rem;
}

/* ─── FOOTER ─────────────────────────────────── */
.footer {
  padding: 52px 0;
  background: var(--teal-2);
  border-top: 4px solid var(--teal);
  color: rgba(255,255,255,.65);
}

.footer__brand {
  margin-bottom: 14px;
  color: var(--white);
  font-family: Oswald, Inter, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
}

.footer__disclaimer {
  max-width: 820px;
  margin: 0 auto 16px;
  font-size: .72rem;
}

.footer__copy { font-size: .68rem; }

/* ─── UPSELL MODAL ───────────────────────────── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  padding: 24px;
  place-items: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity .2s ease, visibility .2s ease;
}

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

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(2,12,24,.84);
}

.modal__card {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 40px;
  border: 2px solid var(--gold);
  border-top: 7px solid var(--teal);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-deep);
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 0;
  background: var(--bg-mint);
  color: var(--teal);
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 900;
  cursor: pointer;
}

.modal__title {
  padding-right: 28px;
  font-size: 1.9rem;
  color: var(--navy);
}

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

.modal__text {
  margin: 14px 0 20px;
  color: var(--muted);
  font-size: .88rem;
}

.modal__price {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
  padding: 16px;
  background: var(--bg-mint);
  border-radius: 8px;
  border-left: 4px solid var(--teal);
  font-size: .75rem;
}

.modal__price-to strong {
  color: var(--teal);
  font-family: Oswald, Inter, sans-serif;
  font-size: 1.4rem;
}

.modal__price-arrow {
  color: var(--teal);
  font-size: 1.4rem;
  font-weight: 900;
}

.modal__price-tag {
  padding: 5px 9px;
  background: var(--teal);
  color: var(--white);
  border-radius: 4px;
  font-weight: 900;
  font-size: .72rem;
}

.modal__list-title {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: .78rem;
  font-weight: 900;
}

.modal__list {
  display: grid;
  gap: 6px;
  margin: 0 0 22px 18px;
  color: var(--muted);
  font-size: .8rem;
}

.modal__decline {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 750;
  text-align: center;
}

/* ─── RESPONSIVE ─────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .gallery__track, .btn--3d::after { animation: none; }
  .btn, .ptrio-card, .faq__a, .faq__ic { transition: none; }
}

@media (max-width: 1100px) {
  .hero__inner {
    grid-template-columns: minmax(0, .95fr) minmax(390px, 1.05fr);
    gap: 32px;
  }
}

@media (max-width: 900px) {
  .section { padding: 80px 0; }

  .hero {
    padding: 42px 0 52px;
  }

  .hero::after {
    display: none;
  }

  .hero__inner,
  .two-col {
    grid-template-columns: 1fr;
  }

  .hero__inner {
    gap: 26px;
  }

  .hero__content {
    max-width: 720px;
  }

  .hero__title {
    max-width: 720px;
    font-size: 2.45rem;
  }

  .hero__lead {
    max-width: 650px;
  }

  .hero__visual {
    width: min(100%, 700px);
    margin: 0 auto;
  }

  .product-trio { grid-template-columns: 1fr; }
  .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps::before { display: none; }
  .step:last-child { grid-column: 1 / -1; width: 50%; justify-self: center; }
}

@media (max-width: 720px) {
  .container { padding: 0 16px; }
  .topbar { display: block; padding: 9px 14px; text-align: center; }
  .topbar span { display: none; }
  .section { padding: 64px 0; }
  .section__title { font-size: 2rem; }

  .hero {
    padding: 30px 0 42px;
  }

  .hero__inner {
    gap: 22px;
  }

  .hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 620px;
    text-align: center;
  }

  .hero__badge {
    justify-content: center;
    margin: 0 auto 10px;
    padding: 6px 11px;
    font-size: .62rem;
    letter-spacing: .065em;
  }

  .hero__title {
    max-width: 620px;
    margin: 0 auto 10px;
    font-size: clamp(1.9rem, 8vw, 2.25rem);
    line-height: 1.07;
  }

  .hero__lead {
    max-width: 560px;
    margin: 0 auto 16px;
    font-size: .94rem;
    line-height: 1.55;
  }

  .hero__cta {
    width: min(100%, 430px);
    margin: 0 auto 20px;
  }

  .hero__cta .btn {
    width: 100%;
    min-height: 50px;
    padding: 13px 18px;
  }

  .hero__proof {
    width: min(100%, 540px);
    margin: 0 auto 10px;
  }

  .hero__proof-item {
    min-height: 66px;
    padding: 9px 5px;
  }

  .hero__proof-item strong {
    font-size: 1.3rem;
  }

  .hero__proof-item span {
    margin-top: 4px;
    font-size: .5rem;
    line-height: 1.25;
  }

  .hero__tags {
    max-width: 520px;
    font-size: .6rem;
    line-height: 1.45;
    letter-spacing: .06em;
  }

  .hero__visual {
    width: min(100%, 650px);
    margin: 0 auto;
    padding: 8px;
    border-radius: 14px;
  }

  .hero__visual::before {
    top: 0;
    right: auto;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 6px 10px;
    font-size: .58rem;
    white-space: nowrap;
  }

  .hero__mockup {
    border-radius: 11px;
  }

  .hero__mockup img {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
  }

  .gallery__item { width: 188px; }
  .grid--3 { grid-template-columns: 1fr; }
  .audience, .pain-grid, .plans, .steps { grid-template-columns: 1fr; }
  .plans { gap: 32px; }
  .plan { padding: 26px 20px; }
  .plan--featured { transform: none; }
  .plan__media { aspect-ratio: 4 / 3; }
  .plan__summary { min-height: 0; }
  .plan__price-main strong { font-size: 2.6rem; }
  .product-showcase {
    margin-top: 30px;
    padding: 14px 8px 16px;
  }
  .product-showcase__caption {
    flex-direction: column;
    gap: 4px;
    padding: 0 10px;
  }
  .ptrio-card__body {
    padding: 24px 20px 26px;
    grid-template-columns: 98px minmax(0, 1fr);
    grid-template-areas:
      "media top"
      "media title"
      "lead lead"
      "list list"
      "meta meta";
    column-gap: 14px;
  }
  .ptrio-card__product-image { width: 98px; }
  .ptrio-card__top { align-self: start; gap: 8px; margin-bottom: 12px; }
  .ptrio-card__tag { padding: 3px 7px; font-size: .54rem; }
  .ptrio-card h3 { font-size: 1.18rem; }
  .ptrio-card__lead { margin-top: 18px; }
  .ptrio-card__list { grid-template-columns: 1fr; }
  .step, .step:last-child { grid-column: auto; width: 100%; padding: 0 8px 22px; }
  .pricing-trust { flex-direction: column; gap: 8px; }
  .guarantee { padding: 36px 20px; }
  .guarantee__steps { grid-template-columns: 1fr; }
  .pain-box { padding: 38px 22px; }
  .two-col { gap: 44px; }
  .modal { padding: 12px; }
  .modal__card { max-height: calc(100vh - 24px); padding: 32px 18px 26px; }
  .modal__title { font-size: 1.55rem; }
  .modal__price { grid-template-columns: 1fr auto 1fr; }
  .modal__price-tag { grid-column: 1/-1; text-align: center; }
}

@media (max-width: 520px) {
  .hero {
    padding: 26px 0 36px;
  }

  .hero__inner {
    gap: 18px;
  }

  .hero__title {
    font-size: clamp(1.72rem, 8.7vw, 2rem);
  }

  .hero__lead {
    font-size: .9rem;
  }

  .hero__proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 8px;
  }

  .hero__proof-item {
    min-height: 60px;
    padding: 8px 6px;
  }

  .hero__proof-item + .hero__proof-item {
    border-left: 0;
  }

  .hero__proof-item:nth-child(even) {
    border-left: 1px solid rgba(15, 143, 115, .14);
  }

  .hero__proof-item:nth-child(n+3) {
    border-top: 1px solid rgba(15, 143, 115, .14);
  }

  .hero__proof-item strong {
    font-size: 1.2rem;
  }

  .hero__proof-item span {
    font-size: .54rem;
  }

  .hero__tags {
    max-width: 330px;
    font-size: .56rem;
    letter-spacing: .045em;
  }

  .hero__visual {
    padding: 6px;
  }
}
