:root {
  --bg: #f9fcfa;
  --bg-mint: #e7f0eb;
  --bg-dark: #102f32;
  --teal: #3d7f6e;
  --teal-2: #143e36;
  --teal-light: #dcebe4;
  --gold: #bd954b;
  --gold-light: #efe1bb;
  --gold-dark: #76571f;
  --navy: #102f4a;
  --navy-2: #214c5b;
  --red: #a44f3e;
  --ink: #22302d;
  --muted: #667570;
  --line: rgba(61, 127, 110, .18);
  --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(61, 127, 110, .035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(61, 127, 110, .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: "Libre Baskerville", Georgia, 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(61, 127, 110, .07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(61, 127, 110, .07) 1px, transparent 1px),
    #f7faf8;
  background-size: 52px 52px;
  padding: 70px 0 86px;
  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, 1fr) minmax(480px, 1.1fr);
  gap: 52px;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  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: 600px;
  margin: 0 0 20px;
  color: var(--navy);
  font-size: 3.2rem;
  text-wrap: balance;
}

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

.hero__lead {
  max-width: 580px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.02rem;
}

.hero__cta {
  margin-bottom: 32px;
}

.hero__proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 560px;
  margin-bottom: 18px;
  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 {
  color: var(--teal-2);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hero__visual {
  position: relative;
  z-index: 1;
  padding: 14px;
  border-radius: 18px;
  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%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  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: 10px;
  right: 10px;
  display: grid;
  width: 44px;
  height: 44px;
  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: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  padding: 8px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 750;
  text-align: center;
}

/* ─── VETERINARY VISUAL IDENTITY ─────────────── */
.topbar strong,
.hero__proof-item strong,
.feature-card__icon,
.pain-box__icon,
.two-col__media::after,
.ptrio-card__meta,
.step__num,
.review__stars,
.plan__name,
.plan__price-main strong,
.plan__media--stage::after,
.footer__brand,
.modal__title {
  font-family: "Libre Baskerville", Georgia, serif;
}

.section--mint {
  background: linear-gradient(180deg, #f4f8f5 0%, var(--bg-mint) 100%);
  border-color: rgba(61, 127, 110, .14);
}

.btn--primary {
  box-shadow: 0 6px 0 var(--teal-2), 0 16px 28px rgba(20, 62, 54, .22);
}

.btn--primary:hover { background: #4a8d79; }

.hero__mockup.vet-product-stage {
  position: relative;
  min-height: 470px;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #e8f0ec;
}

.vet-product-stage::before {
  content: "";
  position: absolute;
  right: 5%;
  bottom: 4%;
  left: 5%;
  height: 19%;
  border: 1px solid rgba(16, 47, 74, .12);
  border-radius: 50%;
  background: #f9fbfa;
  box-shadow: 0 18px 34px rgba(16, 47, 74, .13);
}

.hero__mockup .vet-product-stage__cover {
  position: absolute;
  bottom: 10%;
  width: 25%;
  height: auto;
  aspect-ratio: 1122 / 1402;
  object-fit: cover;
  border: 4px solid rgba(255,255,255,.96);
  border-radius: 5px;
  background: var(--white);
  box-shadow: 0 22px 42px rgba(16, 47, 74, .22);
}

.hero__mockup .vet-product-stage__cover--one {
  left: 4%;
  z-index: 1;
  transform: rotate(-6deg) translateY(4%);
}

.hero__mockup .vet-product-stage__cover--two {
  left: 24%;
  z-index: 4;
  width: 30%;
  transform: rotate(-1.5deg);
}

.hero__mockup .vet-product-stage__cover--three {
  right: 21%;
  z-index: 3;
  width: 27%;
  transform: rotate(2.5deg) translateY(3%);
}

.hero__mockup .vet-product-stage__cover--four {
  right: 3%;
  z-index: 2;
  width: 24%;
  transform: rotate(6deg) translateY(6%);
}

.vet-product-stage__label {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 8;
  padding: 7px 10px;
  border-left: 3px solid var(--gold);
  background: rgba(255,255,255,.92);
  color: var(--navy);
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .07em;
}

.hero__title { font-size: 2.85rem; }

.bundle-covers {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 9px;
  padding: 22px;
  border: 1px solid rgba(16, 47, 74, .12);
  border-radius: 8px;
  background: #f4f7f5;
  box-shadow: 0 22px 54px rgba(16,47,74,.14);
}

.two-col__media .bundle-covers img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 2px solid var(--white);
  border-radius: 4px;
  box-shadow: 0 10px 22px rgba(16,47,74,.14);
}

.two-col__media::after { content: "10 MATERIAIS VISUAIS"; }

.product-showcase__stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: min(100%, 900px);
  margin: 0 auto 16px;
  align-items: end;
}

.product-showcase .product-showcase__stage img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 4px solid var(--white);
  border-radius: 5px;
  background: var(--white);
  box-shadow: 0 18px 30px rgba(16,47,74,.17);
}

.product-showcase__stage img:nth-child(1) { transform: rotate(-2deg); }
.product-showcase__stage img:nth-child(2) { transform: translateY(-10px); }
.product-showcase__stage img:nth-child(3) { transform: translateY(-4px); }
.product-showcase__stage img:nth-child(4) { transform: rotate(2deg); }

.plan__media--stage {
  background: #e8f0ec;
  box-shadow: inset 0 -34px 0 rgba(189,149,75,.12);
}

.plan__media--stage::before {
  background: rgba(61,127,110,.14);
}

.plan__media--complete-stage::after { content: "KIT COMPLETO - 10 MATERIAIS"; }

.plan-cover-grid {
  position: absolute;
  inset: 18px 18px 34px;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.plan-cover-grid img {
  width: 27%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 2px solid var(--white);
  border-radius: 3px;
  background: var(--white);
  box-shadow: 0 14px 28px rgba(16,47,74,.21);
}

.plan-cover-grid img + img { margin-left: -5%; }
.plan-cover-grid img:nth-child(2) { transform: translateY(-5%); }
.plan-cover-grid img:nth-child(3) { transform: translateY(-2%); }

.plan-cover-grid--complete img { width: 16%; }
.plan-cover-grid--complete img + img { margin-left: -7%; }
.plan-cover-grid--complete img:nth-child(5) { transform: translateY(-3%); }

.plan__old-price { text-decoration: none; }
.plan__price-main--pending strong { font-size: 1.3rem; letter-spacing: .04em; }

/* ─── 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: 1fr minmax(420px, 1fr); gap: 40px; }
}

@media (max-width: 900px) {
  .section { padding: 80px 0; }
  .hero__inner, .two-col { grid-template-columns: 1fr; }
  .hero { padding: 52px 0 70px; }
  .hero__title { font-size: 2.6rem; }
  .hero__visual {
    width: min(100%, 680px);
    margin: 10px auto 0;
  }
  .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 18px; }
  .topbar { display: block; padding: 10px 16px; text-align: center; }
  .topbar span { display: none; }
  .section { padding: 64px 0; }
  .section__title { font-size: 2rem; }
  .hero { padding: 44px 0 60px; }
  .hero__inner { grid-template-columns: minmax(0, 1fr); }
  .hero__title { width: 100%; max-width: 100%; min-width: 0; font-size: 2rem; }
  .hero__lead { font-size: .95rem; }
  .hero__content { display: contents; }
  .hero__badge { order: 1; justify-self: start; }
  .hero__title { order: 2; }
  .hero__lead { order: 3; }
  .hero__visual { order: 4; width: 100%; min-width: 0; }
  .hero__proof { order: 5; width: 100%; min-width: 0; }
  .hero__tags { order: 6; width: 100%; min-width: 0; }
  .hero__cta {
    order: 7;
    width: 100%;
    margin: 24px 0 0;
  }
  .hero__cta .btn { width: 100%; }
  .hero__proof {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 14px;
  }
  .hero__proof-item {
    min-height: 68px;
    align-items: center;
    padding: 10px 6px;
    text-align: center;
  }
  .hero__proof-item + .hero__proof-item {
    border-top: 0;
    border-left: 1px solid rgba(15, 143, 115, .14);
  }
  .hero__proof-item strong {
    font-size: 1.18rem;
  }
  .hero__proof-item span {
    font-size: .48rem;
  }
  .hero__visual {
    padding: 12px;
  }
  .hero__visual::before {
    right: 18px;
    font-size: .62rem;
  }
  .hero__mockup img { aspect-ratio: 4 / 3; }
  .hero__mockup.vet-product-stage {
    min-height: 300px;
    aspect-ratio: 4 / 3;
  }
  .hero__mockup .vet-product-stage__cover {
    bottom: 9%;
    border-width: 3px;
  }
  .vet-product-stage__label {
    top: 12px;
    left: 12px;
    font-size: .52rem;
  }
  .product-showcase__stage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: min(100%, 430px);
    padding: 8px 18px 0;
  }
  .product-showcase__stage img:nth-child(n) { transform: none; }
  .bundle-covers { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 5px; padding: 10px; }
  .plan-cover-grid { inset: 14px 10px 30px; }
  .plan-cover-grid--main img { width: 28%; }
  .plan-cover-grid--complete img { width: 17%; }
  .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; }
}

/* ─── VETERINARY EDITORIAL REDESIGN ─────────── */
:root {
  --bg: #f7f5ef;
  --bg-mint: #e7ebe5;
  --bg-dark: #0b2928;
  --teal: #2f6c5a;
  --teal-2: #123a32;
  --teal-light: #d8e5df;
  --gold: #bf9a58;
  --gold-light: #eee2c8;
  --gold-dark: #806128;
  --navy: #102b44;
  --navy-2: #24485a;
  --ink: #1f2c28;
  --muted: #63716c;
  --line: rgba(22, 57, 49, .16);
  --radius: 4px;
}

body {
  background: var(--bg);
}

.topbar {
  min-height: 42px;
  background: #092521;
  color: rgba(255,255,255,.68);
  border: 0;
  border-bottom: 1px solid rgba(191,154,88,.55);
  box-shadow: none;
}

.topbar strong { color: #f1e9d7; }
.topbar span { border-left-color: rgba(255,255,255,.18); }

.hero {
  min-height: 760px;
  padding: 0;
  background-color: #0a2521;
  background-image: url("assets/hero-veterinaria-v2.png");
  background-position: center;
  background-size: cover;
}

.hero::before {
  inset: auto 0 0;
  height: 3px;
  background: var(--gold);
}

.hero::after { display: none; }

.hero__inner {
  display: block;
  min-height: 760px;
  padding-top: 66px;
  padding-bottom: 58px;
}

.hero__content {
  width: min(100%, 480px);
  padding: 18px 0;
}

.hero__badge {
  margin-bottom: 25px;
  padding: 8px 12px;
  color: #f2e8d2;
  background: rgba(8,31,28,.62);
  border-color: rgba(191,154,88,.72);
  border-radius: 2px;
}

.hero__badge::before {
  background: var(--gold);
  color: #12322c;
  border-radius: 2px;
}

.hero__title {
  max-width: 480px;
  color: #fffdf7;
  font-size: clamp(2.65rem, 3.45vw, 3.35rem);
  line-height: 1.04;
}

.hero .accent { color: #d8b876; }

.hero__lead {
  max-width: 545px;
  color: rgba(255,255,255,.76);
  font-size: 1.04rem;
}

.hero__proof {
  max-width: 540px;
  background: rgba(6,29,26,.78);
  border-color: rgba(255,255,255,.18);
  border-radius: 2px;
  box-shadow: none;
}

.hero__proof-item { background: transparent; }
.hero__proof-item + .hero__proof-item { border-left-color: rgba(255,255,255,.13); }
.hero__proof-item strong,
.hero__proof-item:nth-child(2) strong,
.hero__proof-item:nth-child(3) strong { color: #e2c17d; }
.hero__proof-item span { color: rgba(255,255,255,.6); }
.hero__tags { color: rgba(255,255,255,.7); }
.hero__visual { display: none; }
.hero__mobile-image { width: 100%; }

.btn {
  border-radius: 3px;
  letter-spacing: .035em;
}

.btn--primary {
  background: var(--teal-2);
  box-shadow: 0 5px 0 #08261f, 0 14px 28px rgba(10,38,32,.2);
}

.hero .btn--primary {
  background: #c6a25e;
  color: #102f2a;
  box-shadow: 0 5px 0 #826329, 0 18px 34px rgba(0,0,0,.28);
}

.hero .btn--primary:hover { background: #d2b273; }

.section { background: #fbfaf6; }
.section--mint {
  background: #e8ece7;
  border-color: rgba(18,58,50,.14);
}

.section--dark {
  background: #0e2c31;
  background-image: none;
  border-top: 1px solid rgba(191,154,88,.45);
  border-bottom: 1px solid rgba(191,154,88,.45);
}

.section__title { font-size: clamp(2.15rem, 4vw, 3.2rem); }
.section__title::after {
  width: 72px;
  height: 2px;
  background: var(--gold);
  border-radius: 0;
}

.badge,
.pricing-kicker {
  border-radius: 2px;
  background: transparent;
  border: 1px solid rgba(18,58,50,.28);
  color: var(--teal-2);
}

.section--dark .badge {
  border-color: rgba(191,154,88,.62);
  color: #e7cc97;
}

.gallery__item {
  border-radius: 3px;
  border-color: rgba(224,200,152,.38);
  box-shadow: 0 18px 36px rgba(0,0,0,.3);
}
.gallery__item img { border-radius: 2px; }

.grid--3 {
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.feature-card,
.feature-card--highlight {
  min-height: 218px;
  padding: 30px 28px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.feature-card::before {
  inset: 28px auto auto 0;
  width: 3px;
  height: 40px;
  background: var(--gold);
}

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

.feature-card__icon {
  min-width: 0;
  height: auto;
  margin-bottom: 18px;
  padding: 0;
  background: transparent;
  color: var(--teal-2);
  font-size: 1.5rem;
}

.feature-card h3 { font-size: 1.08rem; }

.audience {
  gap: 0 40px;
  border-top: 1px solid rgba(18,58,50,.18);
}

.audience__item {
  padding: 19px 14px 19px 40px;
  border-bottom-color: rgba(18,58,50,.18);
}

.audience__item::before {
  top: 23px;
  left: 8px;
  width: 11px;
  height: 11px;
  color: transparent;
  background: var(--gold);
  border-radius: 0;
}

.pain-box {
  padding: 66px 56px;
  background: #0b2928;
  border: 0;
  border-top: 3px solid var(--gold);
  border-radius: 0;
  box-shadow: 0 22px 60px rgba(8,31,28,.2);
}

.pain-box__icon {
  background: transparent;
  color: #d8b876;
  border: 1px solid rgba(216,184,118,.58);
  border-radius: 2px;
}

.pain-item {
  background: rgba(255,255,255,.055);
  border-left-color: var(--gold);
  border-radius: 0;
}

.two-col { grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr); }
.two-col__media::after {
  right: 18px;
  bottom: -13px;
  content: "10 MATERIAIS VISUAIS";
  background: #102b44;
  border-radius: 2px;
}

.two-col__media .bundle-mockup {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border: 6px solid #f8f4e9;
  border-radius: 2px;
  box-shadow: 0 28px 64px rgba(16,43,68,.22);
}

.check-list li::before {
  width: 20px;
  height: 20px;
  background: var(--teal-2);
  border-radius: 2px;
}

.products-section { background: #f5f1e7; }

.product-showcase {
  max-width: 1060px;
  margin-top: 46px;
  padding: 0 0 18px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.product-showcase::before { display: none; }

.product-showcase .product-showcase__mockup {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border: 6px solid #fffdf8;
  border-radius: 2px;
  filter: none;
  box-shadow: 0 28px 64px rgba(14,44,49,.2);
}

.product-showcase__caption {
  justify-content: space-between;
  margin-top: 16px;
  padding: 0 4px;
  text-align: left;
}

.product-showcase__caption strong { color: var(--navy); }

.product-trio {
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid rgba(16,43,68,.17);
  border-left: 1px solid rgba(16,43,68,.17);
}

.ptrio-card {
  border: 0;
  border-right: 1px solid rgba(16,43,68,.17);
  border-bottom: 1px solid rgba(16,43,68,.17);
  border-radius: 0;
  background: rgba(255,255,255,.48);
  box-shadow: none;
}

.ptrio-card:hover {
  transform: none;
  background: rgba(255,255,255,.78);
  box-shadow: none;
}

.ptrio-card__body {
  grid-template-columns: 185px minmax(0, 1fr);
  column-gap: 26px;
  padding: 30px;
}

.ptrio-card__product-image {
  border: 5px solid #fffdf8;
  border-radius: 2px;
  background: #fffdf8;
  box-shadow: 0 18px 34px rgba(16,43,68,.17);
}

.ptrio-card__top { justify-content: flex-start; }
.ptrio-card__tag {
  color: var(--teal-2);
  background: transparent;
  border-bottom: 1px solid var(--gold);
  border-radius: 0;
}
.ptrio-card h3 { font-size: 1.4rem; }
.ptrio-card__list li::before { color: var(--gold-dark); }
.ptrio-card__meta { color: var(--teal-2); }

.step__num {
  background: #102b44;
  border-color: #fbfaf6;
  border-radius: 2px;
  box-shadow: 0 0 0 1px #102b44;
}

.review {
  border-top-color: var(--gold);
  border-radius: 2px;
  box-shadow: 0 12px 32px rgba(16,43,68,.08);
}
.review__stars { color: var(--gold-dark); }

.pricing-section--clean {
  background: #0d292d;
  border-top: 1px solid rgba(191,154,88,.58);
  border-bottom: 1px solid rgba(191,154,88,.58);
}

.pricing-intro .section__title { color: #fffdf7; }
.pricing-intro__sub { color: rgba(255,255,255,.68); }
.pricing-section .pricing-kicker {
  color: #e4c887;
  border-color: rgba(191,154,88,.66);
}

.plans { gap: 20px; max-width: 1100px; }

.plan {
  padding: 34px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 3px;
  box-shadow: 0 22px 58px rgba(0,0,0,.22);
}

.plan--featured {
  border: 2px solid var(--gold);
  transform: none;
  box-shadow: 0 26px 64px rgba(0,0,0,.3);
}

.plan__ribbon {
  top: -15px;
  border-radius: 2px;
  background: var(--gold);
  color: #102f2a;
}

.plan__eyebrow { color: var(--gold-dark); }

.plan__media,
.plan__media--complete-stage {
  aspect-ratio: 3 / 2;
  border-radius: 2px;
}

.plan__media--stage {
  border: 1px solid rgba(16,43,68,.14);
  background: #e6e6df;
  box-shadow: none;
}

.plan__media--stage::before { display: none; }

.plan__mockup {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plan__media--stage::after {
  right: 10px;
  bottom: 10px;
  border-radius: 2px;
  background: rgba(9,37,33,.9);
  color: #f5e8cc;
}

.plan__media--complete-stage::after { content: "KIT COMPLETO - 10 MATERIAIS"; }
.plan__price-box { background: #edf1ec; border-radius: 2px; }

@media (max-width: 900px) {
  .hero {
    min-height: 0;
    background-image: none;
  }

  .hero__inner {
    display: grid;
    min-height: 0;
    padding-top: 58px;
    padding-bottom: 64px;
  }

  .hero__content { width: 100%; padding: 0; }
  .hero__visual {
    display: block;
    padding: 0;
    border: 1px solid rgba(191,154,88,.48);
    border-radius: 2px;
    background: transparent;
    box-shadow: 0 22px 50px rgba(0,0,0,.28);
  }
  .hero__visual::before { display: none; }
  .hero__mobile-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
  }
  .two-col { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .hero { padding: 0; }
  .hero__inner { gap: 0; padding-top: 30px; padding-bottom: 36px; }
  .hero__badge { margin-bottom: 16px; }
  .hero__title { margin-bottom: 14px; font-size: 1.92rem; line-height: 1.06; }
  .hero__lead {
    margin-bottom: 18px;
    color: rgba(255,255,255,.74);
    font-size: .9rem;
    line-height: 1.55;
  }
  .hero__content { display: contents; }
  .hero__visual { margin-top: 0; }
  .hero__mobile-image { aspect-ratio: 3 / 2; object-position: center; }
  .hero__proof { margin-top: 14px; margin-bottom: 10px; }
  .hero__proof-item { min-height: 56px; padding: 8px 4px; }
  .hero__tags { font-size: .55rem; line-height: 1.45; }
  .hero__cta { margin-top: 18px; }
  .hero__cta .btn { padding: 14px 16px; }

  .grid--3 { border-left: 0; }
  .feature-card,
  .feature-card--highlight {
    min-height: 0;
    padding: 25px 22px;
    border-left: 1px solid var(--line);
  }

  .pain-box { padding: 42px 22px; }
  .two-col__media .bundle-mockup,
  .product-showcase .product-showcase__mockup {
    border-width: 3px;
  }

  .product-showcase { margin-top: 32px; padding: 0 0 14px; }
  .product-showcase__caption { padding: 0; text-align: center; }
  .product-trio { border-left: 0; }
  .ptrio-card { border-left: 1px solid rgba(16,43,68,.17); }
  .ptrio-card__body {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "media"
      "top"
      "title"
      "lead"
      "list"
      "meta";
    gap: 0;
    padding: 22px 20px 26px;
  }
  .ptrio-card__product-image {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 22px;
    align-self: start;
    justify-self: center;
  }
  .ptrio-card__top { justify-content: flex-start; margin-bottom: 12px; }
  .ptrio-card h3 { margin-bottom: 10px; font-size: 1.32rem; }
  .ptrio-card__tag { font-size: .58rem; padding-right: 0; padding-left: 0; }
  .ptrio-card__lead { margin: 0; font-size: .88rem; line-height: 1.6; }
  .ptrio-card__list { margin-top: 20px; }

  .pricing-section--clean { padding-top: 74px; }
  .plan { padding: 26px 20px; }
  .plan__media,
  .plan__media--complete-stage { aspect-ratio: 3 / 2; }
}

