:root {
  --blue: #2980b9;
  --navy: #071b2e;
  --ink: #2c3e50;
  --green: #2e9e5b;
  --green-dark: #237a47;
  --paper: #faf8f5;
  --mist: #e6f0fa;
  --soft: #f6f9fc;
  --red: #ed4b3e;
  --gold: #f2bd3f;
  --white: #fff;
  --shadow: 0 18px 45px rgba(25, 55, 80, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
}

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

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

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin: auto;
}

.wrap.narrow {
  width: min(850px, calc(100% - 40px));
}

.model-section {
  padding: 72px 16px;
}

.offer-bar {
  min-height: 38px;
  padding: 8px 14px;
  background: var(--red);
  color: #fff;
  text-align: center;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  justify-content: center;
}

.countdown {
  display: inline-flex;
  min-width: 86px;
  padding: 3px 10px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.06em;
}

.ico {
  width: 1.15em;
  height: 1.15em;
  display: inline-block;
  vertical-align: -0.18em;
  flex-shrink: 0;
}

.ico-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--mist);
  color: var(--blue);
}

.ico-wrap .ico {
  width: 26px;
  height: 26px;
}

.desire-grid .ico-wrap {
  background: #eef6fc;
}

.security-pill .ico,
.delivery .ico,
.access-badge .ico,
.gift-pill .ico,
.last-call .ico,
.complete-advantage .ico,
.payment-note .ico,
.check-list .ico {
  margin-right: 6px;
}

.stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
  margin-bottom: 8px;
}

.stars .ico-star {
  width: 16px;
  height: 16px;
}

.plans-countdown-box {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  justify-content: center;
  width: max-content;
  max-width: 100%;
  margin: 0 auto 18px;
  padding: 12px 18px;
  border-radius: 14px;
  background: #fff4f2;
  border: 1px solid #ffd0c8;
  color: #9b2b22;
  font-weight: 800;
}

.plans-countdown-box strong {
  font-size: 1.35rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.05em;
  color: var(--red);
}

.hero {
  background: var(--blue);
  color: #fff;
  text-align: center;
}

.hero-inner {
  max-width: 850px;
}

.security-pill,
.eyebrow,
.access-badge,
.gift-pill,
.last-call,
.urgency-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
}

.security-pill {
  padding: 8px 18px;
  background: #fff;
  color: #23394e;
  font-size: 0.78rem;
}

.hero h1 {
  margin: 22px auto 8px;
  max-width: 900px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 0.98;
  font-weight: 950;
  letter-spacing: -0.045em;
}

.hero h1 em {
  display: block;
  font-style: normal;
}

.brand-mark {
  display: block;
  margin: 10px auto 0;
  font-size: clamp(1.1rem, 2.4vw, 1.55rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffe27c;
}

.hero-kicker {
  margin-top: 14px;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
}

.hero-mockup {
  width: min(650px, 95%);
  margin: 25px auto 12px;
  filter: drop-shadow(0 22px 26px rgba(0, 0, 0, 0.25));
}

.hero-copy {
  max-width: 760px;
  margin: 10px auto 22px;
  font-size: 1.05rem;
}

.hero-checks {
  display: grid;
  gap: 8px;
  max-width: 720px;
  margin: 0 auto 28px;
  text-align: left;
  list-style: none;
}

.hero-checks li {
  font-weight: 800;
  color: #ffe27c;
}

.hero-checks li::before {
  content: "✓";
  color: #69d66f;
  margin-right: 10px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 16px 34px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: clamp(0.92rem, 2vw, 1.15rem);
  font-weight: 950;
  text-align: center;
  box-shadow: 0 10px 0 var(--green-dark), 0 16px 24px rgba(0, 0, 0, 0.2);
  transition: 0.2s transform, 0.2s box-shadow;
}

.cta:hover {
  transform: translateY(-2px) scale(1.02);
}

.cta:active {
  transform: translateY(6px);
  box-shadow: 0 4px 0 var(--green-dark);
}

.delivery {
  display: block;
  margin-top: 24px;
  font-weight: 700;
}

.gift-hero-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  padding: 12px 18px;
  max-width: 520px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px dashed rgba(255, 226, 124, 0.85);
  color: #ffe27c;
  font-weight: 850;
  font-size: 0.95rem;
  line-height: 1.25;
  transition: 0.2s transform, 0.2s background;
}

.gift-hero-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.2);
}

.gift-hero-link .ico {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

body.upsell-aberto {
  overflow: hidden;
}

.upsell-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(7, 20, 35, 0.72);
}

.upsell-overlay[hidden] {
  display: none !important;
}

.upsell-modal {
  position: relative;
  width: min(440px, 100%);
  padding: 28px 22px 22px;
  border-radius: 20px;
  background: linear-gradient(165deg, #1b2f55, #162042);
  color: #fff;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.upsell-fechar {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
}

.upsell-badge {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #ef3f32;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.04em;
}

.upsell-modal h2 {
  font-size: clamp(1.35rem, 4vw, 1.7rem);
  line-height: 1.15;
  margin-bottom: 10px;
}

.upsell-copy {
  color: #d5e0f0;
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.upsell-lista {
  list-style: none;
  text-align: left;
  margin: 0 auto 16px;
  max-width: 340px;
  display: grid;
  gap: 8px;
}

.upsell-lista li {
  position: relative;
  padding-left: 26px;
  font-weight: 700;
  font-size: 0.9rem;
}

.upsell-lista li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #5be091;
  font-weight: 950;
}

.upsell-preco {
  display: grid;
  justify-items: center;
  gap: 4px;
  margin-bottom: 16px;
}

.upsell-preco del {
  color: #9aa8c0;
}

.upsell-preco strong {
  font-size: 2.4rem;
  line-height: 1;
  color: #5be091;
}

.upsell-preco small {
  color: #c5d0e2;
}

.upsell-cta {
  width: 100%;
}

.upsell-recusar {
  display: block;
  width: 100%;
  margin-top: 12px;
  padding: 12px;
  border: 0;
  background: transparent;
  color: #a9b7cc;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: underline;
  cursor: pointer;
}

.preview-section,
.benefits-section {
  background: var(--mist);
  text-align: center;
}

.model-section h2 {
  max-width: 950px;
  margin: 0 auto 14px;
  font-size: clamp(1.8rem, 4vw, 3.25rem);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -0.035em;
  text-align: center;
}

.lead {
  max-width: 760px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
  text-align: center;
}

.eyebrow {
  padding: 7px 14px;
  background: #d5e7f7;
  color: #1b6092;
  font-size: 0.76rem;
  margin-bottom: 16px;
}

.sample-rail,
.proof-rail {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 12px 8px 26px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.sample-rail figure {
  flex: 0 0 min(300px, 75vw);
  scroll-snap-align: center;
  background: #fff;
  padding: 10px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.sample-rail img {
  width: 100%;
  aspect-ratio: 518 / 732;
  object-fit: cover;
  border-radius: 11px;
}

.rail-hint {
  font-size: 0.85rem;
  font-weight: 800;
  color: #61778b;
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.icon-grid article,
.desire-grid article,
.module-card,
.not-for article {
  padding: 26px 18px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.icon-grid .ico-wrap,
.desire-grid .ico-wrap {
  margin-bottom: 4px;
}

.icon-grid h3,
.desire-grid h3,
.module-card h3,
.not-for h3 {
  margin: 12px 0 8px;
  font-size: 1rem;
  line-height: 1.15;
}

.icon-grid p,
.desire-grid p,
.module-card p,
.not-for p {
  font-size: 0.9rem;
}

.problem-section {
  background: #fff;
}

.problem-list {
  max-width: 760px;
  margin: 28px auto 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.problem-list li {
  padding: 16px 18px;
  background: var(--mist);
  border-radius: 14px;
  font-weight: 700;
}

.problem-list li::before {
  content: "✕ ";
  color: var(--red);
}

.solution-section {
  background: var(--navy);
  color: #fff;
  text-align: center;
}

.solution-section .lead {
  color: #d7e6f5;
}

.proof-section {
  background: var(--soft);
  text-align: center;
}

.proof-rail img {
  flex: 0 0 270px;
  width: 270px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  scroll-snap-align: center;
}

.urgency-section {
  background: var(--navy);
  color: #fff;
  text-align: center;
}

.urgency-label {
  padding: 7px 14px;
  background: #ef3f32;
  color: #fff;
  margin-bottom: 15px;
}

.urgency-section p {
  margin: 0 auto 28px;
  font-size: 1.08rem;
}

.audience-section,
.receive-section,
.extras-section,
.plans-section,
.faq-section,
.learn-section,
.modules-section,
.not-for-section {
  background: var(--soft);
}

.desire-grid,
.modules-grid,
.not-for {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.desire-grid article {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  text-align: left;
}

.learn-list {
  max-width: 760px;
  margin: 28px auto 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.learn-list li {
  padding: 14px 16px;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow);
  font-weight: 700;
}

.learn-list li::before {
  content: "✔ ";
  color: var(--green);
}

.module-card {
  text-align: left;
}

.module-card b {
  color: var(--blue);
  font-size: 0.78rem;
}

.not-for article {
  border-left: 4px solid var(--red);
}

.receive-section-title {
  margin-bottom: 34px !important;
}

.receive-card {
  width: min(600px, 100%);
  margin: 0 auto;
  padding: 34px 38px 30px;
  border-radius: 20px;
  background: linear-gradient(145deg, #2980b9, #1d6697);
  color: #fff;
  text-align: center;
  box-shadow: 0 20px 42px rgba(25, 74, 111, 0.24);
}

.receive-card .access-badge {
  margin-bottom: 20px;
  padding: 7px 13px;
  background: var(--gold);
  color: #122e42;
  font-size: 0.8rem;
}

.receive-card h3 {
  max-width: 480px;
  margin: 0 auto 12px;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  line-height: 1.08;
  font-weight: 950;
}

.receive-card > p {
  max-width: 470px;
  margin: 0 auto 22px;
}

.receive-image-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  margin: 0 auto 20px;
  padding: 16px;
  border: 1px dashed rgba(255, 255, 255, 0.5);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.receive-image-frame img {
  width: auto;
  max-width: 100%;
  max-height: 380px;
  object-fit: contain;
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.22));
}

.receive-check-list,
.check-list {
  list-style: none;
}

.receive-check-list {
  text-align: left;
}

.receive-check-list li {
  position: relative;
  padding: 12px 8px 12px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 700;
}

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

.receive-check-list li::before {
  content: "✓";
  position: absolute;
  left: 4px;
  color: #8ce19a;
  font-weight: 950;
}

.extras-section {
  text-align: center;
}

.gift-pill {
  padding: 9px 18px;
  background: #ffdf74;
  color: #2c3e50;
  margin-bottom: 28px;
}

.extras-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  text-align: left;
}

.extras-grid article {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 20px;
  padding: 18px;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
  align-items: center;
}

.extras-grid article:last-child {
  grid-column: 1 / -1;
  max-width: 550px;
  justify-self: center;
}

.extras-grid img {
  width: 170px;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  border-radius: 12px;
  background: #f2f6f8;
}

.extras-grid b {
  color: #378bc4;
  font-size: 0.75rem;
}

.extras-grid h3 {
  font-size: 1.1rem;
  line-height: 1.15;
  margin: 5px 0 8px;
}

.extras-grid strong {
  display: block;
  color: var(--green);
  margin-top: 12px;
}

.plans-section {
  padding-top: 76px;
}

.last-call {
  display: flex;
  width: max-content;
  max-width: 100%;
  margin: 0 auto 16px;
  padding: 9px 18px;
  background: #ef3f32;
  color: #fff;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 340px));
  gap: 18px;
  margin-top: 28px;
  align-items: stretch;
  justify-content: center;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 18px 16px 16px;
  background: #eaf4fc;
  border: 2px solid #dbe5ed;
  border-radius: 18px;
  box-shadow: var(--shadow);
  font-size: 0.92rem;
}

.plan-card.featured {
  background: linear-gradient(155deg, #243a6a, #252252);
  border: 3px solid var(--green);
  color: #fff;
  box-shadow: 0 18px 36px rgba(24, 30, 75, 0.28);
  transform: none;
}

.popular {
  position: absolute;
  top: -19px;
  left: 50%;
  transform: translateX(-50%);
  padding: 7px 18px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-weight: 950;
  font-size: 0.78rem;
  white-space: nowrap;
}

.plan-label {
  align-self: center;
  padding: 7px 16px;
  border-radius: 999px;
  background: #dfe8ef;
  color: #2c3e50;
  font-weight: 900;
}

.featured .plan-label {
  background: #31b96b;
  color: #fff;
}

.plan-card > img {
  width: 100%;
  height: 168px;
  margin: 12px auto 8px;
  object-fit: contain;
}

.plan-card h3 {
  text-align: center;
  font-size: 1.25rem;
}

.receive-title {
  margin-top: 10px;
  font-weight: 900;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 20px 0;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 950;
}

.plan-card.featured .check-list li::before {
  color: #55df8c;
}

.plan-card.featured .check-list li {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

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

.check-list.compact {
  flex: 1;
  font-size: 0.95rem;
}

.price {
  display: grid;
  justify-items: center;
  margin: 12px 0 14px;
  gap: 4px;
}

.price-compact strong {
  font-size: 2rem;
  line-height: 1;
  color: #163a50;
}

.price del {
  color: #7f8c8d;
  font-size: 0.85rem;
}

.price span {
  font-weight: 800;
  font-size: 0.85rem;
}

.price-float-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 6px 0 2px;
  padding: 12px 22px;
  border-radius: 16px;
  background: linear-gradient(180deg, #3be07d, #1f9d55);
  box-shadow: 0 10px 24px rgba(31, 157, 85, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  animation: flutuarPreco 2.2s ease-in-out infinite;
  will-change: transform;
}

.price-float-card strong {
  font-size: 2.35rem;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.03em;
}

@keyframes flutuarPreco {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.plan-card.featured .price del,
.plan-card.featured .price span,
.plan-card.featured .price small {
  color: #e5eafa;
}

.price small {
  margin-top: 2px;
  font-size: 0.75rem;
}

@media (prefers-reduced-motion: reduce) {
  .price-float-card {
    animation: none;
  }
}

.plan-card .cta {
  width: 100%;
  padding-inline: 18px;
}

.complete-advantage {
  margin: 14px 0 4px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(80, 188, 142, 0.2);
  color: #74e0a7;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 950;
}

.payment-note {
  margin: 32px auto 0;
  text-align: center;
  font-weight: 800;
}

.guarantee-section {
  background: #fff;
}

.guarantee-layout {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 36px;
  align-items: center;
  max-width: 900px;
}

.guarantee-layout h2 {
  text-align: left;
  margin: 0 0 12px;
}

.guarantee-seal {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--blue);
  border: 10px solid #d9ecfa;
  color: #fff;
  text-align: center;
  font-weight: 950;
  box-shadow: var(--shadow);
  flex-shrink: 0;
}

.guarantee-num {
  display: block;
  font-size: 3.6rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.guarantee-label {
  display: block;
  font-size: 0.95rem;
  line-height: 1;
  letter-spacing: 0.14em;
  font-weight: 900;
}

.stars {
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.testimonial-grid article {
  padding: 22px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  text-align: left;
}

.testimonial-grid cite {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-weight: 800;
  color: #61778b;
}

.nota-num {
  margin-left: 8px;
  font-weight: 900;
  color: #163a50;
  font-size: 0.92rem;
}

.ico-star-half {
  opacity: 0.55;
}

.avaliacao-meta {
  margin-top: 18px;
  text-align: center;
  font-weight: 800;
  color: #61778b;
}

.toast-compra {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 60;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  width: min(340px, calc(100% - 36px));
  padding: 12px 14px;
  border-radius: 16px;
  background: #0f1d2d;
  color: #fff;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
  transform: translateY(18px);
  opacity: 0;
  pointer-events: none;
  transition: 0.35s transform, 0.35s opacity;
}

.toast-compra-visivel {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.toast-compra-icone {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(145deg, #2ecc71, #1f9d55);
  color: #fff;
  flex-shrink: 0;
}

.toast-compra-icone .ico {
  width: 20px;
  height: 20px;
}

.toast-compra-corpo {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.toast-compra-badge {
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #5be091;
}

.toast-compra strong {
  font-size: 0.92rem;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.toast-compra-linha {
  font-size: 0.78rem;
  color: #c8d6e4;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.toast-compra-fechar {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #c8d6e4;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
}

.toast-compra-fechar:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

@media (max-width: 620px) {
  .toast-compra {
    top: calc(46px + env(safe-area-inset-top, 0px));
    bottom: auto;
    left: max(10px, env(safe-area-inset-left, 0px));
    right: max(10px, env(safe-area-inset-right, 0px));
    width: auto;
    padding: 10px 12px;
    gap: 10px;
    border-radius: 14px;
    transform: translateY(-14px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
  }

  .toast-compra-visivel {
    transform: translateY(0);
  }

  .toast-compra-icone {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .toast-compra-icone .ico {
    width: 18px;
    height: 18px;
  }

  .toast-compra-badge {
    font-size: 0.62rem;
  }

  .toast-compra strong {
    font-size: 0.86rem;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .toast-compra-linha {
    font-size: 0.74rem;
    white-space: normal;
  }

  .toast-compra-fechar {
    width: 36px;
    height: 36px;
    align-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .toast-compra {
    transition: opacity 0.2s;
    transform: none;
  }

  .toast-compra:not(.toast-compra-visivel) {
    opacity: 0;
  }
}

.faq-section details {
  margin: 12px 0;
  background: #fff;
  border: 1px solid #dde7ef;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(25, 55, 80, 0.07);
}

.faq-section summary {
  padding: 20px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.faq-section summary::after {
  content: "+";
  float: right;
  font-size: 1.4rem;
  color: var(--blue);
}

.faq-section details[open] summary::after {
  content: "−";
}

.faq-section details p {
  padding: 0 20px 20px;
}

.faq-section .cta {
  display: flex;
  width: max-content;
  max-width: 100%;
  margin: 30px auto 0;
}

footer {
  padding: 52px 16px;
  background: #111;
  color: #fff;
  text-align: center;
  font-size: 0.85rem;
}

footer p {
  max-width: 900px;
  margin: 10px auto;
  color: #d4d4d4;
}

footer strong {
  color: #fff;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 18px;
}

.footer-badges span {
  padding: 8px 14px;
  border-radius: 999px;
  background: #222;
  font-weight: 800;
  font-size: 0.78rem;
}

@media (min-width: 901px) {
  .plans-grid {
    gap: 16px;
    max-width: 720px;
    margin-inline: auto;
  }

  .plan-card.featured {
    z-index: 1;
  }
}

@media (max-width: 900px) {
  .icon-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .extras-grid {
    grid-template-columns: 1fr;
  }

  .extras-grid article:last-child {
    grid-column: auto;
    max-width: none;
  }

  .plans-grid,
  .desire-grid,
  .modules-grid,
  .not-for {
    grid-template-columns: 1fr;
    max-width: 650px;
    margin-inline: auto;
  }

  .plan-card.featured {
    transform: none;
    margin-top: 16px;
  }
}

@media (max-width: 620px) {
  .model-section {
    padding: 52px 8px;
  }

  .wrap,
  .wrap.narrow {
    width: min(100% - 24px, 1120px);
  }

  .hero {
    padding-top: 46px;
  }

  .hero h1 {
    font-size: 2.15rem;
  }

  .hero-mockup {
    width: 100%;
    margin-block: 20px;
  }

  .cta {
    width: 100%;
    min-height: 54px;
    padding: 14px 18px;
  }

  .extras-grid article {
    grid-template-columns: 110px 1fr;
    gap: 13px;
    padding: 12px;
  }

  .extras-grid img {
    width: 110px;
  }

  .plan-card {
    padding: 16px 14px;
  }

  .plan-card > img {
    height: 140px;
  }

  .price-float-card strong {
    font-size: 2.05rem;
  }

  .plans-grid {
    grid-template-columns: minmax(0, 1fr);
    max-width: 360px;
  }

  .guarantee-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .guarantee-seal {
    margin: auto;
    width: 140px;
    height: 140px;
  }

  .guarantee-num {
    font-size: 3rem;
  }

  .guarantee-label {
    font-size: 0.82rem;
  }

  .guarantee-layout h2 {
    text-align: center;
  }

  .proof-rail img {
    flex-basis: 230px;
    width: 230px;
  }

  .offer-bar {
    font-size: 0.67rem;
  }

  .receive-card {
    padding: 28px 18px 22px;
  }

  .plan-card.featured {
    margin-top: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .cta {
    transition: none;
  }
}
