:root {
  --bg: #08090b;
  --bg-soft: #0d0f12;
  --card: #111318;
  --card-2: #15171c;
  --line: #272a31;
  --text: #f7f7f8;
  --muted: #a7abb4;
  --red: #ff1537;
  --red-dark: #840219;
  --green: #28df12;
  --green-dark: #0b9f00;
  --container: 1240px;
  --radius: 20px;
  --shadow: 0 24px 80px rgba(0, 0, 0, .45);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button,
input {
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.narrow {
  max-width: 820px;
}

.center {
  text-align: center;
}

.section {
  padding: 110px 0;
}

.section-dark {
  background: linear-gradient(180deg, #08090b 0%, #0a0b0e 100%);
}

.section-soft {
  background: var(--bg-soft);
  border-block: 1px solid rgba(255, 255, 255, .04);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: rgba(8, 9, 11, .82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.nav-wrap {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 800;
  white-space: nowrap;
}

.brand img {
  filter: drop-shadow(0 0 18px rgba(255, 21, 55, .2));
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #e3e4e8;
  font-size: .95rem;
}

.main-nav a {
  transition: .2s ease;
}

.main-nav a:hover {
  color: var(--green);
}

.nav-actions {
  display: flex;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: transparent;
  padding: 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: .25s;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 750;
  transition: transform .2s, box-shadow .2s, border-color .2s, background .2s;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  box-shadow: 0 12px 34px rgba(40, 223, 18, .18);
}

.button-primary:hover {
  box-shadow: 0 16px 40px rgba(40, 223, 18, .28);
}

.button-ghost {
  border-color: #8c8f96;
  background: rgba(255, 255, 255, .015);
}

.button-ghost:hover {
  border-color: #fff;
}

.button-large {
  min-height: 60px;
  padding: 0 28px;
  font-size: 1rem;
}

.button-video {
  border-color: #777b84;
  background: rgba(255, 255, 255, .025);
  text-align: left;
}

.button-video small {
  display: block;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.2;
}

.play {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid #777;
  border-radius: 50%;
  font-size: .7rem;
}

.full {
  width: 100%;
}

.hero {
  min-height: 100vh;
  padding: 145px 0 72px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}

.hero-glow {
  position: absolute;
  width: 560px;
  height: 560px;
  filter: blur(110px);
  opacity: .18;
  border-radius: 50%;
  pointer-events: none;
}

.hero-glow-left {
  background: #0b7721;
  top: -220px;
  left: -260px;
}

.hero-glow-right {
  background: #b70025;
  right: -160px;
  top: 120px;
}

.hero-grid {
  display: grid;
  grid-template-columns: .92fr 1.18fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-block;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .76rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(3.1rem, 5vw, 5.2rem);
  line-height: .98;
  letter-spacing: -.055em;
  max-width: 690px;
}

.hero h1 span {
  color: var(--red);
  display: block;
}

.hero-lead {
  margin-top: 24px;
  color: #c9cbd1;
  font-size: 1.08rem;
  max-width: 670px;
}

.hero-lead strong {
  color: #fff;
}

.hero-mini-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 30px 0;
}

.hero-mini-benefits article {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.hero-mini-benefits strong {
  font-size: .78rem;
  display: block;
  line-height: 1.25;
}

.hero-mini-benefits small {
  font-size: .7rem;
  color: var(--muted);
  line-height: 1.35;
  display: block;
  margin-top: 3px;
}

.mini-icon {
  color: var(--green);
  font-size: 1.55rem;
  line-height: 1;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 22px;
  color: #c9cbd1;
  font-size: .82rem;
}

.trust-line span::first-letter {
  color: var(--green);
}

.hero-product {
  position: relative;
  min-width: 0;
}

.product-orbit {
  position: absolute;
  width: 90%;
  height: 80%;
  right: -10%;
  top: 12%;
  background: radial-gradient(circle, rgba(255, 21, 55, .3), transparent 67%);
  filter: blur(34px);
}

.dashboard-window {
  position: relative;
  z-index: 1;
  background: linear-gradient(160deg, #121419, #0c0e12);
  border: 1px solid #484b53;
  border-radius: 24px;
  box-shadow: var(--shadow), 0 0 50px rgba(255, 21, 55, .12);
  overflow: hidden;
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.dashboard-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.period-pill {
  font-size: .72rem;
  color: #d3d4d8;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 8px 10px;
}

.dashboard-body {
  display: grid;
  grid-template-columns: 58px 1fr;
}

.dashboard-sidebar {
  border-right: 1px solid var(--line);
  padding: 14px 9px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.dashboard-sidebar span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: #b8bbc2;
}

.dashboard-sidebar .active {
  background: linear-gradient(135deg, #a30524, #5a0211);
  color: #fff;
}

.dashboard-content {
  padding: 16px;
  min-width: 0;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.metric-grid article {
  background: linear-gradient(145deg, #1a1d22, #111318);
  border: 1px solid #252830;
  border-radius: 11px;
  padding: 14px;
  min-width: 0;
}

.metric-grid small {
  color: #d7d8dc;
  font-size: .62rem;
  display: block;
}

.metric-grid strong {
  display: block;
  font-size: 1.05rem;
  margin: 5px 0 2px;
  white-space: nowrap;
}

.metric-grid em {
  color: var(--green);
  font-size: .58rem;
  font-style: normal;
}

.chart-card {
  margin-top: 12px;
  background: #15171b;
  border: 1px solid #272a30;
  border-radius: 12px;
  padding: 16px;
}

.chart-title {
  font-weight: 700;
  font-size: .78rem;
  margin-bottom: 14px;
}

.bar-row {
  display: grid;
  grid-template-columns: 135px 1fr 82px;
  gap: 10px;
  align-items: center;
  margin: 11px 0;
  font-size: .58rem;
  color: #d6d7db;
}

.bar-row i {
  display: block;
  width: var(--bar);
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff1436, #ec002d);
  box-shadow: 0 0 18px rgba(255, 21, 55, .22);
}

.bar-row b {
  font-weight: 600;
  text-align: right;
}

.capi-status {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  margin-top: 12px;
  background: #15171b;
  border: 1px solid #272a30;
  border-radius: 12px;
  padding: 14px;
}

.status-check {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  font-weight: 900;
}

.capi-status strong {
  display: block;
  font-size: .7rem;
}

.capi-status small {
  display: block;
  color: var(--muted);
  font-size: .6rem;
}

.status-active {
  color: var(--green);
  background: rgba(40, 223, 18, .08);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: .65rem;
  font-weight: 700;
}

.outcome-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 62px;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(15, 17, 21, .72);
  backdrop-filter: blur(12px);
}

.outcome-card {
  padding: 26px 22px;
  border-right: 1px solid var(--line);
}

.outcome-card:last-child {
  border-right: 0;
}

.outcome-card>span {
  font-size: 1.8rem;
  color: var(--green);
}

.outcome-card h3 {
  font-size: .95rem;
  line-height: 1.25;
  margin: 13px 0 8px;
}

.outcome-card p {
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.45;
}

.section h2 {
  font-size: clamp(2.25rem, 4vw, 4rem);
  letter-spacing: -.045em;
  line-height: 1.05;
}

.section-lead {
  color: var(--muted);
  font-size: 1.05rem;
  margin-top: 18px;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 50px;
}

.pain-card,
.feature-card {
  background: linear-gradient(145deg, #14161a, #0e1013);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  transition: .25s;
}

.pain-card:hover,
.feature-card:hover {
  transform: translateY(-5px);
  border-color: #454952;
}

.pain-card span,
.feature-card span {
  color: var(--red);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.pain-card h3,
.feature-card h3 {
  margin: 14px 0 9px;
  font-size: 1.08rem;
}

.pain-card p,
.feature-card p {
  color: var(--muted);
  font-size: .9rem;
}

.mechanism-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.check-list {
  list-style: none;
  margin: 28px 0;
  display: grid;
  gap: 14px;
}

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

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

.flow-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(145deg, #121419, #0c0e12);
  box-shadow: var(--shadow);
}

.flow-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 12px;
  padding: 17px;
  border: 1px solid #282b32;
  background: #15171c;
  border-radius: 13px;
}

.flow-step span {
  grid-row: 1/3;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #20232a;
  color: var(--green);
  font-size: .74rem;
  font-weight: 800;
}

.flow-step strong {
  align-self: end;
}

.flow-step small {
  color: var(--muted);
}

.flow-card>i {
  width: 1px;
  height: 18px;
  background: var(--line);
  display: block;
  margin: auto;
}

.flow-highlight {
  border-color: rgba(255, 21, 55, .65);
  box-shadow: 0 0 30px rgba(255, 21, 55, .08);
}

.flow-highlight span {
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
}

.product-shot {
  margin-top: 48px;
}

.product-shot-frame {
  padding: 14px;
  background: linear-gradient(145deg, #16191e, #0c0e11);
  border: 1px solid #333740;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.product-shot-frame img {
  width: 100%;
  border-radius: 14px;
}

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

.integrations-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  align-items: center;
}

.text-link {
  display: inline-block;
  color: var(--green);
  font-weight: 700;
  margin-top: 22px;
}

.integration-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #0d0f12;
}

.integration-cloud span {
  padding: 13px 18px;
  border: 1px solid #32353c;
  border-radius: 12px;
  background: #15171c;
  color: #e7e8eb;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .18);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 50px;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(145deg, #14161a, #0d0f12);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px;
}

.price-card.featured {
  border-color: var(--green);
  transform: translateY(-10px);
  box-shadow: 0 24px 80px rgba(40, 223, 18, .09);
}

.popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 14px;
  background: var(--green);
  color: #061004;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 900;
  white-space: nowrap;
}

.plan-label {
  color: var(--green);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-weight: 800;
}

.price-top h3 {
  font-size: 1.15rem;
  margin-top: 8px;
  min-height: 58px;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 24px 0;
}

.price small {
  font-size: 1rem;
  color: var(--muted);
}

.price strong {
  font-size: 2.9rem;
  line-height: 1;
}

.price span {
  color: var(--muted);
}

.price-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 26px;
  flex: 1;
}

.price-card li {
  color: #d8dae0;
  font-size: .9rem;
  padding-left: 24px;
  position: relative;
}

.price-card li::before {
  content: "✓";
  color: var(--green);
  position: absolute;
  left: 0;
  font-weight: 900;
}

.pricing-note {
  text-align: center;
  color: var(--muted);
  margin-top: 22px;
  font-size: .88rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.accordion {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #111318;
  padding: 0 18px;
}

summary {
  cursor: pointer;
  list-style: none;
  padding: 19px 32px 19px 0;
  font-weight: 700;
  position: relative;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 16px;
  font-size: 1.4rem;
  color: var(--green);
}

details[open] summary::after {
  content: "−";
}

details p {
  color: var(--muted);
  padding: 0 0 18px;
}

.final-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 54px;
  border: 1px solid #3b3f47;
  border-radius: 24px;
  background: radial-gradient(circle at 80% 10%, rgba(255, 21, 55, .18), transparent 38%), linear-gradient(135deg, #15171c, #0b0d10);
  box-shadow: var(--shadow);
}

.final-cta-card h2 {
  max-width: 760px;
}

.final-cta-card p {
  color: var(--muted);
  margin-top: 14px;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 64px 0 24px;
  background: #07080a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 50px;
}

.footer-grid p {
  color: var(--muted);
  max-width: 340px;
  margin-top: 16px;
}

.footer-grid>div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-grid strong {
  margin-bottom: 6px;
}

.footer-grid a:not(.brand) {
  color: var(--muted);
  font-size: .9rem;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: 44px;
  padding-top: 22px;
  color: #777b83;
  font-size: .82rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay {
  transition-delay: .14s;
}

@media (max-width: 1100px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #0d0f12;
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
    order: 3;
  }

  .nav-actions {
    margin-left: auto;
  }

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

  .hero-copy {
    max-width: 820px;
  }

  .hero-product {
    max-width: 900px;
    width: 100%;
    margin-inline: auto;
  }

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

  .outcome-card {
    border-bottom: 1px solid var(--line);
  }

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

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

  .nav-actions .button-ghost {
    display: none;
  }

  .hero {
    padding-top: 120px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 12vw, 4.4rem);
  }

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

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

  .bar-row {
    grid-template-columns: 100px 1fr;
  }

  .bar-row b {
    display: none;
  }

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

  .mechanism-grid,
  .integrations-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .feature-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }

  .final-cta-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 38px;
  }

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

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .nav-wrap {
    height: 70px;
  }

  .brand {
    font-size: 1.05rem;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .nav-actions .button-primary {
    min-height: 42px;
    padding: 0 14px;
    font-size: .82rem;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .main-nav {
    top: 70px;
    left: 14px;
    right: 14px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 54px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 13vw, 3.35rem);
    line-height: 1.02;
  }

  .hero-lead {
    font-size: .98rem;
  }

  .hero-mini-benefits {
    grid-template-columns: 1fr 1fr;
    gap: 16px 10px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-line {
    gap: 10px 16px;
  }

  .dashboard-body {
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
    display: none;
  }

  .dashboard-topbar {
    padding: 14px;
  }

  .dashboard-content {
    padding: 10px;
  }

  .metric-grid article {
    padding: 10px;
  }

  .metric-grid strong {
    font-size: .83rem;
  }

  .chart-card {
    padding: 12px;
  }

  .bar-row {
    grid-template-columns: 82px 1fr;
    gap: 7px;
    font-size: .48rem;
  }

  .capi-status {
    grid-template-columns: auto 1fr;
  }

  .status-active {
    display: none;
  }

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

  .outcome-card {
    border-right: 0;
  }

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

  .section h2 {
    font-size: 2.2rem;
  }

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

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Ajustes V2.1 — equilíbrio da primeira dobra e planos oficiais */
.hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(520px, 1.18fr);
  gap: clamp(38px, 4vw, 64px);
  align-items: start;
}

.hero-copy {
  min-width: 0;
}

.hero h1 {
  font-size: clamp(3.35rem, 4.55vw, 4.65rem);
  line-height: .98;
  max-width: 650px;
}

.hero h1 .headline-line {
  display: block;
  color: var(--text);
  white-space: nowrap;
}

.hero h1 .headline-accent {
  color: var(--red);
}

.hero-product {
  margin-top: 72px;
  padding-left: 40px
}

.dashboard-window {
  width: 100%;
}

.price-caption {
  color: var(--muted);
  font-size: .78rem;
  margin-top: -14px;
  margin-bottom: 22px;
}

.old-price {
  color: var(--muted);
  font-size: .82rem;
  margin-top: 18px;
  margin-bottom: -15px;
}

.old-price s {
  color: #d8dae0;
}

.release-note {
  display: block;
  text-align: center;
  color: var(--muted);
  margin-top: 14px;
}

.price-card li strong {
  color: #fff;
}

@media (max-width: 1180px) and (min-width: 981px) {
  .hero-grid {
    grid-template-columns: minmax(0, .95fr) minmax(470px, 1.05fr);
    gap: 34px;
  }

  .hero h1 {
    font-size: clamp(3rem, 4.35vw, 3.75rem);
  }

  .hero-product {
    margin-top: 58px;
  }

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

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-product {
    margin-top: 8px;
    padding-left: 0px;
  }

  .hero h1 {
    max-width: 760px;
  }
}

@media (max-width: 700px) {
  .hero h1 .headline-line {
    white-space: normal;
  }
}

/* Modal Lead Capture */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 5, 7, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  background: linear-gradient(160deg, #13151b, #0a0b0e);
  border: 1px solid #333742;
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7), 0 0 50px rgba(40, 223, 18, 0.12);
  width: min(100%, 480px);
  padding: 36px 32px;
  position: relative;
  transform: translateY(24px) scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-container {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: rgba(255, 21, 55, 0.2);
  border-color: var(--red);
  color: #fff;
}

.modal-header {
  margin-bottom: 24px;
  text-align: center;
}

.modal-header .eyebrow {
  margin-bottom: 8px;
  display: inline-block;
  background: rgba(40, 223, 18, 0.1);
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(40, 223, 18, 0.2);
  font-size: 0.72rem;
}

.modal-header h3 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 6px;
}

.modal-subtitle {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.lead-form .form-group {
  margin-bottom: 18px;
  text-align: left;
}

.lead-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #e3e4e8;
  margin-bottom: 6px;
}

.lead-form input {
  width: 100%;
  background: #181b22;
  border: 1px solid #292d37;
  border-radius: 12px;
  padding: 14px 16px;
  color: #fff;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.lead-form input::placeholder {
  color: #696d77;
}

.lead-form input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(40, 223, 18, 0.15);
}

.lead-form .button-primary {
  margin-top: 8px;
  font-size: 1.05rem;
  min-height: 54px;
}

.form-status {
  margin-top: 12px;
  font-size: 0.85rem;
  text-align: center;
  min-height: 20px;
}

@media (max-width: 480px) {
  .modal-container {
    padding: 28px 20px;
  }
}

/* Bonus Section — Comunidade de Tráfego + Trackeamento */
.bonus-community {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
}

.community-card {
  position: relative;
  background: radial-gradient(circle at 10% 20%, rgba(40, 223, 18, 0.08), transparent 45%),
              radial-gradient(circle at 90% 80%, rgba(255, 21, 55, 0.08), transparent 45%),
              linear-gradient(160deg, #13151c, #090a0d);
  border: 1px solid rgba(40, 223, 18, 0.35);
  border-radius: 28px;
  padding: 56px 48px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.65), 0 0 45px rgba(40, 223, 18, 0.12);
}

.community-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 46px;
}

.bonus-badge-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.bonus-badge {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: 999px;
  box-shadow: 0 4px 18px rgba(255, 21, 55, 0.35);
  text-transform: uppercase;
}

.free-pill {
  background: rgba(40, 223, 18, 0.12);
  color: var(--green);
  border: 1px solid rgba(40, 223, 18, 0.35);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 999px;
  text-transform: uppercase;
}

.community-header h2 {
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 16px;
}

.community-lead {
  color: #c9cbd1;
  font-size: 1.08rem;
  line-height: 1.55;
}

.community-lead strong {
  color: #fff;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.community-feature {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 24px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.community-feature:hover {
  transform: translateY(-4px);
  border-color: rgba(40, 223, 18, 0.45);
  background: rgba(40, 223, 18, 0.04);
}

.feature-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: grid;
  place-items: center;
  font-size: 1.45rem;
  color: var(--green);
  background: rgba(40, 223, 18, 0.08);
  border: 1px solid rgba(40, 223, 18, 0.2);
  border-radius: 14px;
}

.community-feature h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.3;
}

.community-feature p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.48;
}

.community-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
}

.community-callout {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #e3e4e8;
  font-size: 0.98rem;
}

.community-callout strong {
  color: var(--green);
}

.callout-icon {
  font-size: 1.2rem;
  color: var(--green);
  font-weight: 900;
}

@media (max-width: 900px) {
  .community-card {
    padding: 36px 24px;
  }

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

  .community-footer {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .community-callout {
    justify-content: center;
    text-align: center;
  }

  .community-footer .button {
    width: 100%;
  }
}