:root {
  --black: #02040a;
  --navy-950: #050814;
  --navy-900: #071126;
  --navy-800: #0b1f3d;
  --navy-700: #12325d;
  --orange: #f97316;
  --orange-soft: #ff9b45;
  --white: #ffffff;
  --muted: #a9b4c7;
  --muted-strong: #d6deed;
  --line: rgba(255, 255, 255, 0.12);
  --glass: rgba(255, 255, 255, 0.06);
  --glass-strong: rgba(255, 255, 255, 0.1);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 5%, rgba(249, 115, 22, 0.12), transparent 30%),
    radial-gradient(circle at 85% 15%, rgba(23, 75, 142, 0.35), transparent 35%),
    linear-gradient(180deg, var(--black), var(--navy-950) 32%, #030712 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.85), transparent 72%);
  z-index: -2;
}

body.no-scroll {
  overflow: hidden;
}

img, svg {
  max-width: 100%;
}

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

button, input {
  font: inherit;
}

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

.narrow {
  max-width: 790px;
  text-align: center;
}

.section {
  padding: 105px 0;
  position: relative;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  padding: 10px 14px;
  background: var(--orange);
  color: var(--black);
  border-radius: 999px;
  z-index: 999;
  transition: top .2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(2, 4, 10, 0.78);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.navigation {
  width: min(100% - 32px, 1240px);
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 14px;
  background: linear-gradient(135deg, var(--orange), #ba4a08 48%, var(--navy-800));
  box-shadow: 0 14px 40px rgba(249, 115, 22, 0.26);
}

.brand-copy {
  font-size: 1rem;
  color: var(--muted-strong);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

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

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--white);
}

.header-cta {
  color: var(--white);
  border: 1px solid rgba(249, 115, 22, 0.38);
  background: rgba(249, 115, 22, 0.1);
  border-radius: 999px;
  padding: 11px 17px;
  font-weight: 700;
  transition: transform .25s ease, background .25s ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  background: rgba(249, 115, 22, 0.18);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--glass);
  color: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--white);
  border-radius: 999px;
  transition: transform .25s ease, opacity .25s ease;
}

.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero-section {
  padding: 86px 0 110px;
  min-height: calc(100svh - 78px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  width: 780px;
  height: 780px;
  border-radius: 50%;
  right: -210px;
  top: -190px;
  background: radial-gradient(circle, rgba(249,115,22,.22), rgba(18,50,93,.18) 48%, transparent 70%);
  filter: blur(10px);
  animation: pulseGlow 7s ease-in-out infinite alternate;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(340px, .72fr);
  gap: 56px;
  align-items: center;
}

.promo-badge,
.section-eyebrow,
.proof-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #ffd7b6;
  border: 1px solid rgba(249, 115, 22, .32);
  background: linear-gradient(135deg, rgba(249, 115, 22, .16), rgba(255,255,255,.04));
  padding: 9px 14px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

h1, h2, h3, p {
  margin-top: 0;
}

h1, h2 {
  font-family: 'Manrope', 'Inter', sans-serif;
  letter-spacing: -0.055em;
  line-height: .98;
}

h1 {
  margin: 24px 0 20px;
  font-size: clamp(2.7rem, 6.6vw, 6.35rem);
  max-width: 920px;
}

h2 {
  margin: 16px 0 18px;
  font-size: clamp(2.1rem, 4.6vw, 4.2rem);
}

h3 {
  font-size: 1.12rem;
  line-height: 1.25;
}

.hero-subtitle,
.section-intro,
.solution-copy p,
.offer-copy p,
.final-cta p,
.lead-layout p {
  color: var(--muted-strong);
  font-size: clamp(1.03rem, 2vw, 1.25rem);
  max-width: 760px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 15px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 900;
  letter-spacing: .01em;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}

.button-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-soft));
  color: #171006;
  box-shadow: 0 18px 45px rgba(249, 115, 22, .27);
}

.button-primary:hover,
.button-primary:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(249, 115, 22, .36);
}

.button-secondary {
  border-color: var(--line);
  color: var(--white);
  background: rgba(255,255,255,.055);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.09);
}

.button-large {
  min-height: 64px;
  padding-inline: 32px;
  font-size: 1.02rem;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--muted-strong);
}

.trust-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.045);
  border-radius: 999px;
  padding: 9px 12px;
  font-size: .92rem;
}

.trust-list i,
.feature-card i,
.benefit-card i {
  color: var(--orange-soft);
}

.price-panel {
  position: relative;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.04)),
    linear-gradient(140deg, rgba(11,31,61,.96), rgba(2,4,10,.94));
  box-shadow: var(--shadow);
  overflow: hidden;
  transform-style: preserve-3d;
}

.price-panel::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius-xl) - 1px);
  background: linear-gradient(135deg, transparent 34%, rgba(249,115,22,.1), transparent 66%);
  pointer-events: none;
}

.panel-glow {
  position: absolute;
  width: 220px;
  height: 220px;
  right: -90px;
  top: -80px;
  border-radius: 50%;
  background: rgba(249,115,22,.28);
  filter: blur(52px);
}

.price-label,
.price-kicker,
.deadline {
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .82rem;
}

.price-label span {
  color: #8996aa;
  text-decoration: line-through;
}

.installments {
  display: block;
  margin: 10px 0;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2.6rem, 5.5vw, 4.7rem);
  line-height: .95;
  letter-spacing: -0.06em;
  color: var(--white);
}

.cash-price {
  font-size: 1.3rem;
  color: var(--muted-strong);
  margin-bottom: 20px;
}

.cash-price strong {
  color: var(--orange-soft);
}

.deadline {
  display: inline-flex;
  gap: 8px;
  margin-bottom: 24px;
  color: #ffd7b6;
}

.mini-dashboard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mini-dashboard span {
  padding: 16px 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.055);
  text-align: center;
}

.mini-dashboard strong,
.mini-dashboard small {
  display: block;
}

.mini-dashboard strong {
  font-size: 1.1rem;
}

.mini-dashboard small {
  color: var(--muted);
}

.card-grid,
.solution-grid,
.benefits-grid,
.process-steps {
  display: grid;
  gap: 18px;
}

.pain-grid {
  margin-top: 42px;
  grid-template-columns: repeat(3, 1fr);
}

.pain-card,
.feature-card,
.step-card,
.benefit-card,
.proof-card,
.faq-item,
.lead-layout {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.078), rgba(255,255,255,.035));
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 70px rgba(0,0,0,.18);
}

.pain-card {
  min-height: 138px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .25s ease, border-color .25s ease;
}

.pain-card:hover {
  transform: translateY(-5px);
  border-color: rgba(249,115,22,.32);
}

.pain-card i {
  color: #ff6b6b;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 107, 107, .12);
}

.pain-card h3 {
  margin: 0;
}

.solution-section,
.benefits-section,
.faq-section {
  background: linear-gradient(180deg, rgba(5,8,20,.1), rgba(255,255,255,.025), rgba(5,8,20,.1));
}

.solution-layout {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 44px;
  align-items: start;
}

.solution-copy {
  position: sticky;
  top: 118px;
}

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

.feature-card,
.benefit-card {
  padding: 26px;
  transition: transform .25s ease, background .25s ease;
}

.feature-card:hover,
.benefit-card:hover,
.step-card:hover {
  transform: translateY(-6px);
  background: linear-gradient(180deg, rgba(255,255,255,.105), rgba(255,255,255,.045));
}

.feature-card i,
.benefit-card i {
  font-size: 1.55rem;
  margin-bottom: 18px;
}

.feature-card p,
.benefit-card p,
.step-card p,
.proof-card p,
.faq-item p {
  color: var(--muted);
  margin-bottom: 0;
}

.process-steps {
  margin-top: 42px;
  grid-template-columns: repeat(5, 1fr);
}

.step-card {
  padding: 24px;
  min-height: 220px;
  position: relative;
  overflow: hidden;
}

.step-card span {
  display: block;
  color: rgba(249,115,22,.52);
  font-size: 2.6rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.07em;
  margin-bottom: 38px;
}

.benefits-grid {
  margin-top: 42px;
  grid-template-columns: repeat(3, 1fr);
}

.proof-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 30px;
}

.proof-header h2 {
  max-width: 780px;
}

.proof-badge {
  max-width: 330px;
  line-height: 1.35;
}

.carousel-shell {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  gap: 14px;
}

.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(290px, 34%);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 2px 18px;
  scrollbar-width: thin;
  scrollbar-color: rgba(249,115,22,.7) rgba(255,255,255,.05);
}

.proof-card {
  scroll-snap-align: start;
  min-height: 310px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.proof-card.highlighted {
  border-color: rgba(249,115,22,.36);
  background: linear-gradient(180deg, rgba(249,115,22,.15), rgba(255,255,255,.04));
}

.browser-frame {
  height: 116px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(249,115,22,.5) 20%, transparent 20% 100%) 22px 70px / 120px 8px no-repeat,
    linear-gradient(90deg, rgba(255,255,255,.24), transparent) 22px 90px / 190px 7px no-repeat,
    linear-gradient(135deg, rgba(255,255,255,.1), rgba(255,255,255,.03));
  padding: 13px;
}

.browser-frame span {
  width: 9px;
  height: 9px;
  display: inline-block;
  border-radius: 50%;
  margin-right: 5px;
  background: rgba(255,255,255,.34);
}

.rating {
  color: #ffc46b;
  font-size: 1.35rem;
  letter-spacing: .08em;
}

.metric-pill {
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(249,115,22,.16);
  color: #ffd7b6;
  font-weight: 900;
}

.proof-card strong {
  color: var(--muted-strong);
}

.carousel-button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--white);
  background: rgba(255,255,255,.06);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.carousel-button:hover {
  transform: scale(1.06);
  background: rgba(249,115,22,.14);
}

.offer-card {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 36px;
  align-items: center;
  padding: clamp(28px, 5vw, 58px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(249,115,22,.28);
  background:
    radial-gradient(circle at 82% 8%, rgba(249,115,22,.24), transparent 32%),
    linear-gradient(135deg, rgba(11,31,61,.95), rgba(2,4,10,.96));
  box-shadow: var(--shadow);
}

.offer-price {
  padding: 28px;
  border-radius: 26px;
  background: rgba(255,255,255,.075);
  border: 1px solid var(--line);
}

.offer-price p {
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
}

.offer-price strong,
.offer-price span {
  display: block;
}

.offer-price strong {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-family: 'Manrope', sans-serif;
  line-height: .94;
  letter-spacing: -0.06em;
  margin-bottom: 12px;
}

.offer-price span {
  color: var(--orange-soft);
  font-size: 1.24rem;
  font-weight: 800;
  margin-bottom: 22px;
}

.lead-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 32px;
  padding: 34px;
  align-items: center;
}

.lead-form {
  display: grid;
  gap: 11px;
}

.lead-form label {
  color: var(--muted-strong);
  font-weight: 800;
  font-size: .9rem;
}

.lead-form input {
  width: 100%;
  min-height: 52px;
  color: var(--white);
  background: rgba(2,4,10,.5);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0 16px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.lead-form input:focus {
  border-color: rgba(249,115,22,.58);
  box-shadow: 0 0 0 4px rgba(249,115,22,.12);
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 900px;
}

.faq-item {
  padding: 0 22px;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  font-weight: 900;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  color: var(--orange-soft);
  font-size: 1.6rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  padding-bottom: 22px;
}

.final-cta-section {
  padding-top: 70px;
}

.final-cta {
  text-align: center;
  padding: clamp(36px, 7vw, 78px) 24px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at center top, rgba(249,115,22,.18), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
  border: 1px solid var(--line);
}

.final-cta p {
  margin-inline: auto;
}

.site-footer {
  padding: 50px 0 28px;
  border-top: 1px solid var(--line);
  background: rgba(2,4,10,.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
}

.footer-grid p {
  color: var(--muted);
  max-width: 440px;
  margin: 18px 0 0;
}

address {
  font-style: normal;
  display: grid;
  gap: 12px;
}

address a {
  color: var(--muted-strong);
  transition: color .2s ease;
}

address a:hover {
  color: var(--orange-soft);
}

address i {
  width: 24px;
  color: var(--orange-soft);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: var(--muted);
}

.footer-bottom a:hover {
  color: var(--white);
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #041007;
  box-shadow: 0 18px 45px rgba(37, 211, 102, .32);
  z-index: 90;
  font-size: 1.7rem;
  transition: transform .25s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.04);
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulseGlow {
  from { transform: scale(0.96) translate3d(0,0,0); opacity: .65; }
  to { transform: scale(1.08) translate3d(-30px, 25px, 0); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

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

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

  .menu-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: fixed;
    top: 78px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(5, 8, 20, .96);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  }

  .nav-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-menu a {
    display: block;
    padding: 14px 10px;
  }

  .header-cta {
    display: none;
  }

  .hero-grid,
  .solution-layout,
  .offer-card,
  .lead-layout {
    grid-template-columns: 1fr;
  }

  .hero-section {
    padding-top: 62px;
  }

  .solution-copy {
    position: static;
  }

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

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

  .proof-header,
  .footer-grid {
    display: grid;
  }

  .proof-badge {
    max-width: 100%;
  }

  .carousel-track {
    grid-auto-columns: minmax(280px, 72%);
  }
}

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

  .navigation {
    width: min(100% - 24px, 1240px);
  }

  .brand-copy {
    display: none;
  }

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

  h1 {
    font-size: clamp(2.35rem, 12vw, 3.55rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 2.95rem);
  }

  .promo-badge,
  .section-eyebrow,
  .proof-badge {
    font-size: .69rem;
  }

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

  .trust-list li {
    width: 100%;
  }

  .price-panel,
  .offer-price,
  .lead-layout {
    padding: 24px;
    border-radius: 24px;
  }

  .mini-dashboard,
  .pain-grid,
  .solution-grid,
  .benefits-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .step-card {
    min-height: 170px;
  }

  .step-card span {
    margin-bottom: 24px;
  }

  .carousel-shell {
    grid-template-columns: 1fr;
  }

  .carousel-button {
    display: none;
  }

  .carousel-track {
    grid-auto-columns: 86%;
  }

  .proof-card {
    min-height: 290px;
  }

  .footer-bottom {
    display: grid;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
  }
}
