/* =========================================================
   LUMIA SOFTWARE — Design System
   Cores, tipografia e componentes da marca.
   Tokens em :root — mude aqui pra ajustar a marca inteira.
   ========================================================= */

:root {
  /* Paleta */
  --ambar: #F4A93C;
  /* luz — cor-herói */
  --brasa: #E8722E;
  /* acento quente */
  --tinta: #211E33;
  /* base escura / texto */
  --tinta-2: #2C2842;
  /* superfícies escuras */
  --creme: #FBF6EE;
  /* fundo acolhedor */
  --creme-2: #F4EDE0;
  /* superfície alternada */
  --cinza: #797488;
  /* texto secundário */
  --texto: #4a4658;
  /* corpo sobre creme */
  --linha: #E8E1D3;
  /* bordas */

  /* Tipografia */
  --sora: 'Sora', system-ui, sans-serif;
  --inter: 'Inter', system-ui, sans-serif;

  /* Layout */
  --maxw: 1080px;
  --radius: 18px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px
}

body {
  font-family: var(--inter);
  background: var(--creme);
  color: var(--tinta);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px
}

.wrap-narrow {
  max-width: 760px
}

/* ---------- Wordmark com o "i" aceso ---------- */
.mark {
  font-family: var(--sora);
  font-weight: 700;
  display: inline-flex;
  align-items: flex-end;
  line-height: 1;
  letter-spacing: -.01em;
  color: var(--tinta);
  text-decoration: none;
  font-size: 26px;
}

.mark .ig {
  position: relative;
  display: inline-block;
  width: .34em;
  height: .74em
}

.mark .ig .stem {
  position: absolute;
  bottom: 0;
  left: .08em;
  width: .17em;
  height: .5em;
  background: currentColor;
  border-radius: .07em
}

.mark .ig .dot {
  position: absolute;
  top: 0;
  left: .04em;
  width: .25em;
  height: .25em;
  border-radius: 50%;
  background: var(--ambar);
  box-shadow: 0 0 .55em .06em rgba(244, 169, 60, .65)
}

.mark--light {
  color: var(--creme)
}

.mark .sfx {
  font-family: var(--inter);
  font-weight: 600;
  letter-spacing: .42em;
  font-size: .235em;
  color: var(--cinza);
  align-self: center;
  margin-left: .9em;
  padding-bottom: .15em
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--sora);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: 100px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}

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

.btn-primary {
  background: var(--tinta);
  color: var(--creme)
}

.btn-primary:hover {
  box-shadow: 0 12px 30px -12px rgba(33, 30, 51, .55)
}

.btn-ghost {
  background: transparent;
  color: var(--tinta);
  border-color: var(--linha)
}

.btn-ghost:hover {
  border-color: var(--tinta);
  box-shadow: none
}

.btn-amber {
  background: var(--ambar);
  color: var(--tinta)
}

.btn-amber:hover {
  box-shadow: 0 12px 30px -12px rgba(244, 169, 60, .6)
}

.btn-ghost-light {
  background: transparent;
  color: var(--creme);
  border-color: rgba(255, 255, 255, .28)
}

.btn-ghost-light:hover {
  border-color: var(--creme)
}

.btn-block {
  width: 100%
}

.spark {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ambar);
  box-shadow: 0 0 10px 1px rgba(244, 169, 60, .8);
  flex: 0 0 auto
}

.spark-dark {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--tinta);
  flex: 0 0 auto
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 246, 238, .82);
  backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--linha);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px
}

.nav a {
  font-family: var(--sora);
  font-weight: 500;
  font-size: 15px;
  color: var(--tinta);
  text-decoration: none;
  opacity: .82;
  transition: opacity .15s
}

.nav a:hover {
  opacity: 1
}

.nav .nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--tinta);
  color: var(--creme);
  padding: 10px 18px;
  border-radius: 100px;
  opacity: 1;
  font-weight: 600
}

.nav .nav-cta:hover {
  transform: translateY(-1px)
}

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px
}

.menu-btn span {
  width: 22px;
  height: 2px;
  background: var(--tinta);
  border-radius: 2px;
  transition: .2s
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px 28px 20px;
  border-bottom: 1px solid var(--linha);
  background: var(--creme)
}

.mobile-menu a {
  font-family: var(--sora);
  font-weight: 500;
  padding: 12px 0;
  text-decoration: none;
  color: var(--tinta);
  border-bottom: 1px solid var(--linha)
}

.mobile-menu a:last-child {
  border-bottom: none
}

.mobile-menu .nav-cta {
  margin-top: 8px;
  background: var(--tinta);
  color: var(--creme);
  border-radius: 100px;
  justify-content: center;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: none
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 78px 0 96px;
  overflow: hidden
}

.glow {
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: 820px;
  height: 560px;
  background: radial-gradient(closest-side, rgba(244, 169, 60, .30), rgba(244, 169, 60, .09) 55%, transparent 72%);
  pointer-events: none;
  filter: blur(2px)
}

.kicker {
  position: relative;
  font-family: var(--sora);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .06em;
  color: var(--brasa);
  text-transform: uppercase;
  margin-bottom: 20px
}

.hero h1 {
  position: relative;
  font-family: var(--sora);
  font-weight: 700;
  font-size: clamp(40px, 7.5vw, 78px);
  line-height: 1.02;
  letter-spacing: -.03em;
  margin-bottom: 24px;
  max-width: 16ch
}

.hero h1 .lit {
  color: var(--brasa)
}

.hero .lead {
  position: relative;
  font-size: clamp(17px, 2.3vw, 21px);
  color: var(--texto);
  max-width: 60ch
}

.hero-actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px
}

.hero-proof {
  position: relative;
  margin-top: 30px;
  font-size: 15px;
  color: var(--cinza)
}

.hero-proof strong {
  color: var(--tinta);
  font-weight: 600
}

/* ---------- Bandas de conteúdo ---------- */
.band {
  padding: 82px 0
}

.band-alt {
  background: var(--creme-2)
}

.eyebrow {
  font-family: var(--sora);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--brasa);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ambar);
  box-shadow: 0 0 8px 1px rgba(244, 169, 60, .7)
}

.eyebrow.centered {
  justify-content: center
}

h2 {
  font-family: var(--sora);
  font-weight: 700;
  font-size: clamp(27px, 4vw, 40px);
  line-height: 1.12;
  letter-spacing: -.02em;
  max-width: 20ch
}

.band .body {
  font-size: 17px;
  color: var(--texto);
  max-width: 62ch;
  margin-top: 18px
}

/* ---------- Grid de features ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px
}

.feature {
  background: #fff;
  border: 1px solid var(--linha);
  border-radius: var(--radius);
  padding: 28px
}

.feature .fdot {
  display: block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--ambar);
  box-shadow: 0 0 10px 1px rgba(244, 169, 60, .65);
  margin-bottom: 18px
}

.feature h3 {
  font-family: var(--sora);
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 8px
}

.feature p {
  font-size: 15px;
  color: var(--texto);
  line-height: 1.6
}

/* ---------- Seção escura ---------- */
.dark {
  position: relative;
  background: var(--tinta);
  color: var(--creme);
  padding: 92px 0;
  overflow: hidden
}

.dark .glow2 {
  position: absolute;
  top: 50%;
  right: -140px;
  transform: translateY(-50%);
  width: 560px;
  height: 560px;
  background: radial-gradient(closest-side, rgba(244, 169, 60, .26), transparent 70%);
  pointer-events: none
}

.dark .eyebrow {
  color: var(--ambar)
}

.dark h2 {
  color: var(--creme);
  max-width: 22ch
}

.dark .body {
  color: #c9c4d6;
  max-width: 60ch
}

.stat {
  margin-top: 44px;
  display: flex;
  align-items: baseline;
  gap: 18px;
  flex-wrap: wrap
}

.stat .num {
  font-family: var(--sora);
  font-weight: 700;
  font-size: clamp(52px, 9vw, 88px);
  line-height: 1;
  color: var(--ambar);
  letter-spacing: -.03em
}

.stat .lbl {
  font-size: 16px;
  color: #c9c4d6;
  max-width: 26ch
}

/* ---------- Passos ---------- */
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px
}

.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--linha);
  border-radius: var(--radius);
  padding: 30px 26px 28px
}

.step-tag {
  position: absolute;
  top: 26px;
  right: 24px;
  font-family: var(--sora);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cinza)
}

.step-n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--creme-2);
  border: 1px solid var(--linha);
  margin-bottom: 18px
}

.step-n .d {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ambar);
  box-shadow: 0 0 8px 1px rgba(244, 169, 60, .7)
}

.step h3 {
  font-family: var(--sora);
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 8px
}

.step p {
  font-size: 15px;
  color: var(--texto);
  line-height: 1.6
}

/* ---------- Pacotes ---------- */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
  align-items: start
}

.pkg {
  position: relative;
  background: #fff;
  border: 1px solid var(--linha);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px
}

.pkg-featured {
  border-color: var(--ambar);
  box-shadow: 0 20px 50px -28px rgba(244, 169, 60, .55)
}

.pkg-badge {
  position: absolute;
  top: -13px;
  left: 28px;
  background: var(--ambar);
  color: var(--tinta);
  font-family: var(--sora);
  font-weight: 600;
  font-size: 12px;
  padding: 5px 14px;
  border-radius: 100px
}

.pkg h3 {
  font-family: var(--sora);
  font-weight: 700;
  font-size: 22px
}

.pkg-desc {
  font-size: 15px;
  color: var(--texto);
  line-height: 1.6
}

.pkg-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding-top: 4px
}

.pkg-list li {
  font-size: 14.5px;
  color: var(--texto);
  padding-left: 22px;
  position: relative
}

.pkg-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ambar);
  box-shadow: 0 0 6px 1px rgba(244, 169, 60, .55)
}

.pkg-price {
  margin-top: auto;
  font-family: var(--sora);
  font-size: 15px;
  color: var(--cinza);
  display: flex;
  flex-direction: column;
  gap: 2px
}

.pkg-price strong {
  font-size: 24px;
  color: var(--tinta);
  font-weight: 700
}

.pkg-price span {
  font-size: 13px
}



.pkg-price {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.price-old {
  display: block;
  color: #8d96a8;
  text-decoration: line-through;
  font-size: .95rem;
  margin-bottom: 6px;
}

.price-current {
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.price-current .currency {
  margin-top: 10px;
  font-size: 1rem;
  opacity: .75;
}

.price-current strong {
  font-size: 3rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -2px;
}

.price-save {
  display: inline-flex;
  margin-top: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(40, 200, 120, .12);
  color: #69e08d;
  font-size: .9rem;
  font-weight: 600;
}


.pkg-credit {
  margin: 8px 0 28px;

  padding: 14px 16px;

  border-left: 4px solid var(--ambar);
  background: #FFF9EF;

  border-radius: 0 12px 12px 0;
}

.pkg-credit strong {
  display: block;
  margin-bottom: 6px;

  color: var(--tinta);
  font-size: 15px;
}

.pkg-credit p {
  margin: 0;

  color: var(--texto);
  font-size: 14px;
  line-height: 1.5;
}

/* ---------- Para quem ---------- */
.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 44px
}

.card {
  border-radius: var(--radius);
  padding: 30px 28px
}

.card.yes {
  background: #fff;
  border: 1px solid var(--ambar)
}

.card.no {
  background: #fff;
  border: 1px solid var(--linha)
}

.card h4 {
  font-family: var(--sora);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 9px
}

.card.yes h4 .b {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ambar);
  box-shadow: 0 0 8px 1px rgba(244, 169, 60, .7)
}

.card.no h4 .b {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cinza)
}

.card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.card li {
  font-size: 15px;
  color: var(--texto);
  padding-left: 18px;
  position: relative;
  line-height: 1.5
}

.card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cinza)
}

.card.yes li::before {
  background: var(--brasa)
}

/* ---------- FAQ ---------- */
.faq {
  margin-top: 40px;
  display: flex;
  flex-direction: column
}

.faq details {
  border-bottom: 1px solid var(--linha);
  padding: 6px 0
}

.faq summary {
  font-family: var(--sora);
  font-weight: 600;
  font-size: 17px;
  padding: 18px 40px 18px 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  color: var(--tinta)
}

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

.faq summary::after {
  content: "+";
  position: absolute;
  right: 6px;
  top: 15px;
  font-size: 24px;
  font-weight: 400;
  color: var(--ambar);
  transition: transform .2s
}

.faq details[open] summary::after {
  transform: rotate(45deg)
}

.faq details p {
  font-size: 15.5px;
  color: var(--texto);
  padding: 0 40px 20px 0;
  line-height: 1.7
}

/* ---------- CTA final ---------- */
.close {
  position: relative;
  background: var(--tinta);
  color: var(--creme);
  padding: 96px 0;
  overflow: hidden;
  text-align: center
}

.close .glow3 {
  position: absolute;
  top: -140px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 460px;
  background: radial-gradient(closest-side, rgba(244, 169, 60, .24), transparent 70%);
  pointer-events: none
}

.close h2 {
  color: var(--creme);
  margin: 0 auto;
  max-width: 18ch
}

.close-lead {
  color: #c9c4d6;
  font-size: 18px;
  margin: 18px auto 0;
  max-width: 50ch
}

.close-actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--tinta);
  color: var(--creme);
  padding: 56px 0 32px
}

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

.footer-nav {
  display: flex;
  gap: 26px;
  flex-wrap: wrap
}

.footer-nav a {
  font-family: var(--sora);
  font-weight: 500;
  font-size: 14px;
  color: #c9c4d6;
  text-decoration: none
}

.footer-nav a:hover {
  color: var(--creme)
}

.footer-social a {
  color: var(--ambar);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
  font-size: 12.5px;
  color: #8f8aa0
}

/* ---------- Animações ---------- */
@media (prefers-reduced-motion:no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .7s cubic-bezier(.2, .7, .2, 1), transform .7s cubic-bezier(.2, .7, .2, 1)
  }

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

  .hero .reveal {
    opacity: 0;
    transform: translateY(18px);
    animation: heroUp .8s cubic-bezier(.2, .7, .2, 1) forwards
  }

  .hero .kicker {
    animation-delay: .02s
  }

  .hero h1 {
    animation-delay: .12s
  }

  .hero .lead {
    animation-delay: .22s
  }

  .hero .hero-actions {
    animation-delay: .32s
  }

  .hero .hero-proof {
    animation-delay: .42s
  }

  @keyframes heroUp {
    to {
      opacity: 1;
      transform: none
    }
  }
}

/* ---------- Foco acessível ---------- */
a:focus-visible,
.btn:focus-visible,
summary:focus-visible,
button:focus-visible {
  outline: 3px solid var(--ambar);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- Responsivo ---------- */
@media (max-width:860px) {
  .nav {
    display: none
  }

  .menu-btn {
    display: flex
  }

  .header-inner {
    height: 64px
  }

  .feature-grid {
    grid-template-columns: 1fr
  }

  .steps {
    grid-template-columns: 1fr
  }

  .pkg-grid {
    grid-template-columns: 1fr
  }

  .two {
    grid-template-columns: 1fr
  }

  .band {
    padding: 64px 0
  }

  .footer-inner {
    justify-content: center;
    text-align: center
  }

  .footer-legal {
    justify-content: center;
    text-align: center
  }
}

@media (max-width:480px) {
  .wrap {
    padding: 0 20px
  }

  .hero {
    padding: 56px 0 72px
  }
}