:root {

  --bg-deep: #130d19;
  --bg-alt: #1c1423;

  --bg-card: rgba(255, 255, 255, 0.035);

  --border-soft: rgba(181, 107, 234, 0.15);
  --border-strong: rgba(181, 107, 234, 0.30);

  --primary: #b56bea;
  --primary-dark: #8d53c9;
  --gold: #d4a44c;

  --text-main: #f5f1f7;
  --text-soft: #cabfd1;
  --text-muted: #8f8299;

  --max-width: 1080px;
}


/* RESET */

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

html {
  scroll-behavior: smooth;
}

body {

  background: var(--bg-deep);

  color: var(--text-main);

  font-family: 'DM Sans', sans-serif;

  line-height: 1.6;

  overflow-x: hidden;
}

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

img {
  display: block;
}

h1,
h2,
blockquote {
  font-family: 'Libre Baskerville', serif;
}


/* ATMOSFERA */

.glow {

  position: fixed;

  border-radius: 50%;

  filter: blur(100px);

  pointer-events: none;

  z-index: -1;

  opacity: .22;
}

.glow-one {

  width: 450px;
  height: 450px;

  background: var(--primary);

  top: -200px;
  left: -180px;
}

.glow-two {

  width: 380px;
  height: 380px;

  background: var(--gold);

  right: -200px;
  top: 45%;
}


/* NAVBAR */

.navbar {

  position: sticky;

  top: 0;

  z-index: 50;

  backdrop-filter: blur(16px);

  background: rgba(19, 13, 25, .82);

  border-bottom: 1px solid var(--border-soft);
}

.nav-inner {

  max-width: var(--max-width);

  margin: auto;

  padding: 15px 24px;

  display: flex;

  align-items: center;

  justify-content: space-between;
}

.brand {

  display: flex;

  align-items: center;

  gap: 10px;

  font-family: 'Libre Baskerville', serif;

  font-size: 17px;

  font-weight: 700;
}

.brand img {

  width: 36px;
  height: 36px;

  border-radius: 9px;

  object-fit: contain;
}

.nav-links {

  display: flex;

  gap: 28px;

  margin-left: auto;

  margin-right: 30px;
}

.nav-links a {

  color: var(--text-muted);

  font-size: 13px;

  transition: color .2s ease;
}

.nav-links a:hover {

  color: var(--text-main);
}

.nav-actions {

  display: flex;

  align-items: center;

  gap: 18px;
}

.nav-login {

  color: var(--text-soft);

  font-size: 13px;

  font-weight: 600;
}

.nav-button {

  padding: 9px 17px;

  border-radius: 9px;

  background: var(--primary);

  color: #150c1e;

  font-size: 13px;

  font-weight: 700;

  transition: transform .2s ease;
}

.nav-button:hover {

  transform: translateY(-2px);
}


/* HERO */

.hero {

  min-height: 680px;

  display: flex;

  align-items: center;

  justify-content: center;

  text-align: center;

  padding: 100px 24px 110px;
}

.hero-content {

  max-width: 800px;
}

.eyebrow {

  display: inline-block;

  color: var(--gold);

  font-size: 12px;

  font-weight: 700;

  letter-spacing: .08em;

  text-transform: uppercase;

  margin-bottom: 24px;
}

.hero h1 {

  font-size: clamp(38px, 6vw, 64px);

  line-height: 1.12;

  letter-spacing: -.035em;

  margin-bottom: 25px;
}

.hero h1 span {

  color: var(--primary);
}

.hero-description {

  max-width: 610px;

  margin: auto;

  color: var(--text-soft);

  font-size: 17px;

  line-height: 1.75;
}

.hero-actions {

  display: flex;

  justify-content: center;

  gap: 12px;

  margin-top: 34px;
}

.hero-note {

  margin-top: 18px;

  color: var(--text-muted);

  font-size: 12.5px;
}


/* BOTÕES */

.button {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 13px 23px;

  border-radius: 10px;

  font-size: 14px;

  font-weight: 700;

  transition:

    transform .2s ease,
    box-shadow .2s ease,
    background .2s ease;
}

.button:hover {

  transform: translateY(-2px);
}

.button-primary {

  background: linear-gradient(
    135deg,
    var(--primary),
    var(--primary-dark)
  );

  color: #150c1e;
}

.button-primary:hover {

  box-shadow:
    0 12px 30px rgba(181, 107, 234, .25);
}

.button-secondary {

  border: 1px solid var(--border-strong);

  background: rgba(255,255,255,.025);

  color: var(--text-main);
}

.button-secondary:hover {

  background: rgba(255,255,255,.06);
}


/* SEÇÕES */

.section {

  max-width: var(--max-width);

  margin: auto;

  padding: 105px 24px;
}

.section-alt {

  max-width: none;

  background: rgba(255,255,255,.018);
}

.section-header {

  max-width: 650px;

  margin: 0 auto 55px;

  text-align: center;
}

.section-label {

  display: block;

  color: var(--gold);

  font-size: 11px;

  font-weight: 700;

  letter-spacing: .12em;

  text-transform: uppercase;

  margin-bottom: 14px;
}

.section-header h2,
.section-small h2 {

  font-size: clamp(29px, 4vw, 42px);

  line-height: 1.25;

  margin-bottom: 17px;
}

.section-header p,
.section-small p {

  color: var(--text-muted);

  font-size: 15px;

  line-height: 1.75;
}


/* HISTÓRIA */

.section-small {

  max-width: 700px;

  margin: auto;

  text-align: center;
}

.section-small p {

  margin-bottom: 17px;
}

.highlight {

  color: var(--text-soft) !important;

  font-family: 'Libre Baskerville', serif;

  font-size: 17px !important;

  margin-top: 30px;
}


/* CARDS */

.cards-grid {

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 18px;
}

.feature-card {

  padding: 30px;

  min-height: 245px;

  border: 1px solid var(--border-soft);

  border-radius: 18px;

  background: var(--bg-card);

  transition:

    transform .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;
}

.feature-card:hover {

  transform: translateY(-7px);

  border-color: var(--border-strong);

  box-shadow:
    0 20px 45px rgba(0,0,0,.22);
}

.card-icon {

  width: 40px;

  height: 40px;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 24px;

  border-radius: 10px;

  color: var(--primary);

  background: rgba(181,107,234,.10);

  font-size: 11px;

  font-weight: 700;
}

.feature-card h3 {

  font-size: 18px;

  margin-bottom: 9px;
}

.feature-card p {

  color: var(--text-muted);

  font-size: 14px;

  line-height: 1.7;
}


/* PASSOS */

.steps {

  max-width: 700px;

  margin: auto;
}

.step {

  display: grid;

  grid-template-columns: 70px 1fr;

  gap: 20px;

  padding: 28px 0;

  border-bottom: 1px solid var(--border-soft);
}

.step:last-child {

  border-bottom: none;
}

.step-number {

  color: var(--gold);

  font-family: 'Libre Baskerville', serif;

  font-size: 14px;
}

.step h3 {

  font-size: 17px;

  margin-bottom: 6px;
}

.step p {

  color: var(--text-muted);

  font-size: 14px;
}


/* VALORES */

.values-grid {

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 18px;
}

.value-card {

  padding: 30px;

  border-top: 2px solid var(--primary);

  background: var(--bg-card);
}

.value-card span {

  color: var(--gold);

  font-size: 11px;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: .1em;
}

.value-card h3 {

  margin: 17px 0 12px;

  font-family: 'Libre Baskerville', serif;

  font-size: 19px;

  line-height: 1.5;
}

.value-card p {

  color: var(--text-muted);

  font-size: 14px;
}


/* CITAÇÃO */

.quote-section {

  padding: 110px 24px;

  border-top: 1px solid var(--border-soft);

  border-bottom: 1px solid var(--border-soft);

  text-align: center;

  background:
    linear-gradient(
      180deg,
      rgba(181,107,234,.035),
      transparent
    );
}

.quote-content {

  max-width: 720px;

  margin: auto;
}

.quote-content span {

  color: var(--gold);

  font-size: 11px;

  font-weight: 700;

  letter-spacing: .12em;

  text-transform: uppercase;
}

blockquote {

  margin-top: 22px;

  font-size: clamp(22px, 4vw, 31px);

  line-height: 1.5;
}


/* PLANOS */

.pricing-grid {

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 18px;

  align-items: stretch;
}

.price-card {

  position: relative;

  padding: 34px 28px;

  border: 1px solid var(--border-soft);

  border-radius: 18px;

  background: var(--bg-card);

  transition:

    transform .25s ease,
    border-color .25s ease;
}

.price-card:hover {

  transform: translateY(-6px);

  border-color: var(--border-strong);
}

.price-card.featured {

  border-color: rgba(181,107,234,.5);

  box-shadow:
    0 20px 50px rgba(0,0,0,.2);
}

.recommended {

  position: absolute;

  top: -11px;

  left: 24px;

  padding: 4px 10px;

  border-radius: 999px;

  background: var(--primary);

  color: #150c1e;

  font-size: 10px;

  font-weight: 800;

  text-transform: uppercase;
}

.plan-name {

  font-size: 18px;

  font-weight: 700;
}

.price-top p {

  min-height: 68px;

  margin-top: 9px;

  color: var(--text-muted);

  font-size: 13px;
}

.price {

  margin: 24px 0;

  font-size: 42px;

  font-weight: 700;

  letter-spacing: -.04em;
}

.price small {

  font-size: 15px;

  vertical-align: top;
}

.price sup {

  font-size: 22px;
}

.price span {

  color: var(--text-muted);

  font-size: 12px;

  font-weight: 400;
}

.price-card ul {

  list-style: none;

  margin: 0 0 28px;
}

.price-card li {

  padding: 8px 0;

  color: var(--text-soft);

  font-size: 13px;
}

.price-button {

  display: block;

  padding: 12px;

  border: 1px solid var(--border-strong);

  border-radius: 9px;

  text-align: center;

  font-size: 13px;

  font-weight: 700;

  transition: .2s ease;
}

.price-button:hover,
.price-button.primary {

  background: var(--primary);

  color: #150c1e;
}


/* FAQ */

.faq-list {

  max-width: 760px;

  margin: auto;
}

.faq-item {

  border-bottom: 1px solid var(--border-soft);
}

.faq-item summary {

  list-style: none;

  cursor: pointer;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  padding: 22px 4px;

  color: var(--text-main);

  font-size: 15px;

  font-weight: 600;

  transition: color .2s ease;
}

.faq-item summary::-webkit-details-marker {

  display: none;
}

.faq-item summary:hover {

  color: var(--primary);
}

.faq-icon {

  width: 30px;

  height: 30px;

  flex-shrink: 0;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  color: var(--primary);

  background: rgba(181,107,234,.10);

  font-size: 20px;

  font-weight: 400;

  transition:

    transform .3s ease,
    background .3s ease;
}

.faq-item[open] .faq-icon {

  transform: rotate(45deg);

  background: rgba(181,107,234,.18);
}

.faq-answer {

  display: grid;

  grid-template-rows: 0fr;

  opacity: 0;

  transition:

    grid-template-rows .35s ease,
    opacity .25s ease;
}

.faq-answer p {

  overflow: hidden;

  padding: 0 50px 0 4px;

  color: var(--text-muted);

  font-size: 14px;

  line-height: 1.7;
}

.faq-item[open] .faq-answer {

  grid-template-rows: 1fr;

  opacity: 1;
}

.faq-item[open] .faq-answer p {

  padding-bottom: 22px;
}


/* CTA */

.cta-section {

  padding: 110px 24px;
}

.cta-card {

  max-width: 760px;
  margin: auto;
  padding: 70px 40px;
  text-align: center;
  border: 1px solid var(--border-strong);
  border-radius: 24px;
  background:
    linear-gradient(
      145deg,
      rgba(181,107,234,.10),
      rgba(255,255,255,.015)
    );
}

.cta-card h2 {

  max-width: 600px;
  margin: 0 auto 16px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.3;
}

.cta-card p {
  color: var(--text-muted);
  margin-bottom: 28px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
}


/* FOOTER */

footer {
  padding: 45px 24px;
  border-top: 1px solid var(--border-soft);
  text-align: center;
  color: var(--text-muted);
  font-size: 12px;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-bottom: 12px;
  color: var(--text-main);
}

.footer-brand img {
  width: 30px;
  height: 30px;
  border-radius: 7px;
}

footer p {
  margin-top: 5px;
}

footer a {
  color: var(--text-soft);
}


/* RESPONSIVO */

@media (max-width: 850px) {

  .nav-links {
    display: none;
  }

  .cards-grid,
  .values-grid,
  .pricing-grid {

    grid-template-columns: 1fr;
  }

  .price-card {
    max-width: 500px;
    width: 100%;
    margin: auto;
  }

}


@media (max-width: 600px) {

  .nav-inner {
    padding: 13px 18px;
  }

  .nav-login {
    display: none;
  }

  .hero {
    min-height: 620px;
    padding:
      80px 20px
      80px;
  }

  .hero h1 {

    font-size: 37px;
  }

  .hero-actions,
  .cta-buttons {

    flex-direction: column;
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 80px 20px;
  }

  .feature-card {
    min-height: auto;
  }

  .step {
    grid-template-columns: 45px 1fr;
    gap: 10px;
  }

  .cta-section {
    padding: 70px 20px;
  }

  .cta-card {
    padding: 50px 24px;
  }

}