:root {
  --bg-main: #0a0a0a;
  --bg-card: #141414;
  --text-main: #f5f5f5;
  --text-muted: #b6b6b6;
  --primary: #8a2be2;
  --secondary: #00d2ff;
  --whatsapp: #25d366;
  --line: #222;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: min(1160px, 92%);
  margin-inline: auto;
}

section {
  padding: 88px 0;
}

.gradient-text {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.fade-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  box-shadow: 0 10px 25px rgba(138, 43, 226, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 14px 28px rgba(138, 43, 226, 0.5);
}

.btn-whatsapp {
  color: #fff;
  background: var(--whatsapp);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.45);
}

.btn-outline {
  color: var(--text-main);
  border-color: #313131;
  background: rgba(255, 255, 255, 0.02);
}

.btn-outline:hover {
  border-color: #555;
}

.btn-full {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(8px);
  background: rgba(10, 10, 10, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo-link {
  display: inline-flex;
}

.logo {
  height: 42px;
  width: auto;
  display: block;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.desktop-nav a {
  color: #d6d6d6;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.desktop-nav a:hover {
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid #2a2a2a;
  background: #141414;
  color: #fff;
  font-size: 1.05rem;
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 78px);
  display: grid;
  place-items: center;
  text-align: center;
}

.hero-orb {
  position: absolute;
  z-index: -1;
  width: 760px;
  aspect-ratio: 1 / 1;
  left: 50%;
  top: 35%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(138, 43, 226, 0.34) 0%, rgba(138, 43, 226, 0.08) 45%, rgba(10, 10, 10, 0) 70%);
  pointer-events: none;
}

.hero-content {
  max-width: 860px;
}

.hero-kicker {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border: 1px solid #2f2f2f;
  border-radius: 999px;
  color: #d8d8d8;
  font-size: 0.92rem;
}

.hero h1 {
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.hero-subtitle {
  max-width: 740px;
  margin: 0 auto 34px;
  color: var(--text-muted);
  font-size: clamp(1rem, 2.3vw, 1.22rem);
}

.hero-subtitle strong {
  color: var(--text-main);
  font-weight: 800;
}

.hero-cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-row {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  color: #cfcfcf;
  font-size: 0.94rem;
}

.trust-row i {
  margin-right: 6px;
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.2;
  text-align: center;
  margin-bottom: 36px;
}

.urgency-bar {
  padding: 18px 0;
  border-top: 1px solid #1f1f1f;
  border-bottom: 1px solid #1f1f1f;
  background: linear-gradient(90deg, rgba(138, 43, 226, 0.12), rgba(0, 210, 255, 0.08));
}

.urgency-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.urgency-wrap p {
  font-weight: 600;
}

.remaining-slots {
  color: #dbdbdb;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid #2b2b2b;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.92rem;
}

.remaining-slots strong {
  color: #fff;
}

.urgency-wrap i {
  color: #f7c948;
  margin-right: 8px;
}

.countdown {
  background: #101010;
  border: 1px solid #2a2a2a;
  padding: 8px 12px;
  border-radius: 10px;
  font-weight: 800;
  letter-spacing: 1px;
}

.social-proof {
  padding: 34px 0 14px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.proof-card {
  background: #121212;
  border: 1px solid #242424;
  border-radius: 14px;
  padding: 18px;
  text-align: center;
}

.proof-number {
  font-size: clamp(1.3rem, 2.8vw, 2rem);
  font-weight: 900;
  line-height: 1.1;
}

.proof-label {
  color: var(--text-muted);
  margin-top: 4px;
  font-size: 0.94rem;
}

.benefits {
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.5) 0%, rgba(20, 20, 20, 0.95) 100%);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid #232323;
  border-radius: 18px;
  padding: 22px 18px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: #363636;
}

.icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.28), rgba(0, 210, 255, 0.22));
  margin-bottom: 14px;
  font-size: 1.2rem;
}

.benefit-card h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.benefit-card p {
  color: var(--text-muted);
  font-size: 0.96rem;
}

.testimonials {
  padding-top: 50px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.testimonial-card {
  background: #121212;
  border: 1px solid #262626;
  border-radius: 14px;
  padding: 18px;
}

.stars {
  color: #ffd166;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.testimonial-card p {
  color: #d6d6d6;
  margin-bottom: 10px;
}

.testimonial-card span {
  color: #a8a8a8;
  font-size: 0.92rem;
}

.pricing .container {
  max-width: 760px;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid #292929;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
}

.price-card h3 {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.price {
  text-align: center;
  font-weight: 900;
  font-size: clamp(2.2rem, 4.2vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 6px;
}

.price span {
  font-size: 0.38em;
  color: var(--text-muted);
  font-weight: 600;
}

.price-note {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.price-features {
  list-style: none;
  margin-bottom: 24px;
  display: grid;
  gap: 10px;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f0f0f0;
}

.price-features i {
  color: var(--whatsapp);
}

.faq {
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.88) 0%, rgba(10, 10, 10, 1) 100%);
}

.faq .container {
  max-width: 840px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid #262626;
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: transparent;
  color: var(--text-main);
  border: 0;
  cursor: pointer;
  padding: 16px 18px;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-question i {
  transition: transform 0.25s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 18px;
}

.faq-answer p {
  color: var(--text-muted);
}

.faq-item.active .faq-answer {
  max-height: 220px;
  padding: 0 18px 16px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.final-cta {
  padding-top: 20px;
}

.final-cta-card {
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.22), rgba(0, 210, 255, 0.14));
  border: 1px solid #2e2e2e;
  border-radius: 18px;
  padding: 28px;
  text-align: center;
}

.final-cta-card h2 {
  font-size: clamp(1.5rem, 3.1vw, 2.2rem);
  margin-bottom: 10px;
}

.final-cta-card p {
  color: #d0d0d0;
  margin-bottom: 18px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 24px 0 30px;
  text-align: center;
  color: #9f9f9f;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform 0.2s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-2px) scale(1.03);
}

@media (max-width: 980px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  section {
    padding: 72px 0;
  }

  .header-wrap {
    min-height: 72px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .mobile-menu {
    display: grid;
    gap: 8px;
    padding: 0 4% 12px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.28s ease, opacity 0.2s ease, padding 0.2s ease;
  }

  .site-header.menu-open .mobile-menu {
    max-height: 260px;
    opacity: 1;
    padding: 4px 4% 14px;
  }

  .mobile-link {
    color: #ececec;
    text-decoration: none;
    border: 1px solid #2b2b2b;
    background: #141414;
    border-radius: 10px;
    padding: 10px 12px;
    font-weight: 600;
  }

  .mobile-menu-cta {
    width: 100%;
    margin-top: 2px;
  }

  .logo {
    height: 36px;
  }

  .btn {
    padding: 12px 20px;
    font-size: 0.94rem;
  }

  .hero h1 {
    font-size: clamp(1.85rem, 9vw, 2.4rem);
  }

  .hero-subtitle {
    font-size: 0.98rem;
    margin-bottom: 24px;
  }

  .hero-cta {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .trust-row {
    gap: 8px;
    font-size: 0.88rem;
  }

  .hero {
    min-height: calc(100vh - 72px);
  }

  .hero-orb {
    width: 560px;
    top: 30%;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .price-card {
    padding: 22px 18px;
  }

  .price-card h3 {
    font-size: 1.2rem;
  }

  .price-features {
    gap: 8px;
    margin-bottom: 18px;
  }

  .floating-whatsapp {
    width: 54px;
    height: 54px;
    font-size: 1.45rem;
    right: 14px;
    bottom: 14px;
  }

  .urgency-wrap {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .container {
    width: 94%;
  }

  section {
    padding: 62px 0;
  }

  .header-wrap {
    min-height: 66px;
    gap: 10px;
  }

  .logo {
    height: 32px;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
    border-radius: 9px;
  }

  .hero {
    min-height: calc(100vh - 66px);
  }

  .hero-kicker {
    font-size: 0.82rem;
    padding: 6px 10px;
  }

  .hero h1 {
    font-size: clamp(1.65rem, 8.6vw, 2rem);
    margin-bottom: 12px;
  }

  .hero-subtitle {
    font-size: 0.92rem;
    margin-bottom: 18px;
  }

  .urgency-wrap p {
    font-size: 0.92rem;
  }

  .remaining-slots {
    font-size: 0.84rem;
  }

  .countdown {
    font-size: 0.92rem;
    padding: 7px 10px;
  }

  .section-title {
    margin-bottom: 24px;
  }

  .benefit-card,
  .testimonial-card,
  .price-card,
  .final-cta-card {
    padding: 16px;
    border-radius: 14px;
  }

  .price {
    font-size: clamp(1.9rem, 9vw, 2.3rem);
  }

  .faq-question {
    padding: 14px 14px;
    font-size: 0.95rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 14px 14px;
  }

  .floating-whatsapp {
    width: 50px;
    height: 50px;
    font-size: 1.35rem;
    right: 10px;
    bottom: 10px;
  }
}