:root {
  --bg: #050505;
  --bg-soft: #0c0c0c;
  --card: #151515;
  --text: #ffffff;
  --muted: #b8b8b8;
  --primary: #d7ff35;
  --primary-dark: #a6cc18;
  --border: rgba(255, 255, 255, 0.1);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.6);
  --radius: 28px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at 10% 0%, rgba(215, 255, 53, 0.15), transparent 32%),
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.08), transparent 28%),
    var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font-family: inherit;
}

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

.section {
  padding: 105px 0;
}

#beneficios {
  padding-top: 40px;
}

.section-header {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-header.center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 9px 15px;
  border: 1px solid rgba(215, 255, 53, 0.3);
  border-radius: 999px;
  background: rgba(215, 255, 53, 0.07);
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 18px var(--primary);
}

h1,
h2 {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  text-transform: none;
  letter-spacing: -0.06em;
}

h2 {
  margin-top: 18px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.98;
}

.section-header p,
.about-content p,
.faq-grid p,
.contact-box p {
  margin-top: 20px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 16px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: 0.25s ease;
}

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

.btn-primary {
  background: var(--primary);
  color: #080808;
  box-shadow: 0 18px 40px rgba(215, 255, 53, 0.22);
}

.btn-primary:hover {
  background: #ebff75;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: var(--border);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  color: var(--primary);
  border-color: rgba(215, 255, 53, 0.45);
}

.btn-dark {
  background: #080808;
  color: var(--primary);
  border-color: rgba(0, 0, 0, 0.3);
}

/* HEADER */
.header {
  position: fixed;
  top: 18px;
  left: 0;
  width: 100%;
  z-index: 999;
}

.nav {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.76);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.35);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: #070707;
  font-weight: 900;
}

.menu {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.menu a {
  transition: 0.25s ease;
}

.menu a:hover {
  color: var(--primary);
}

.menu-cta {
  padding: 13px 18px;
  border-radius: 999px;
  background: var(--primary);
  color: #080808 !important;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  font-size: 22px;
  cursor: pointer;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 155px 0 80px;
  overflow: hidden;
}

.hero-bg-text {
  position: absolute;
  left: 50%;
  bottom: 2%;
  transform: translateX(-50%);
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: clamp(80px, 16vw, 230px);
  line-height: 1;
  color: rgba(255, 255, 255, 0.035);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -0.09em;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
}

.hero-content h1 {
  max-width: 760px;
  margin-top: 24px;
  font-size: clamp(54px, 7vw, 80px);
  line-height: 0.92;
}

.hero-content h1 span {
  color: var(--primary);
}

.hero-content p {
  max-width: 610px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 650px;
  margin-top: 44px;
}

.hero-stats div {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
}

.hero-stats strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  color: var(--primary);
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.06em;
}

.hero-stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 660px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-shape {
  position: absolute;
  bottom: 45px;
  width: min(100%, 520px);
  height: 520px;
  border-radius: 48% 52% 45% 55%;
  background: linear-gradient(145deg, rgba(215, 255, 53, 0.95), rgba(105, 132, 0, 0.7));
  filter: drop-shadow(0 35px 90px rgba(215, 255, 53, 0.18));
}

.hero-image {
  position: relative;
  z-index: 3;
  width: min(100%, 560px);
  height: 680px;
  object-fit: cover;
  object-position: center top;
  transform: translateY(-80px);
  border-radius: 42px;
  box-shadow: var(--shadow);
  filter: contrast(1.05) saturate(0.9);
  -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

.floating-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(8, 8, 8, 0.76);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.35);
}

.card-top {
  top: 24%;
  left: 0;
}

.card-bottom {
  right: 0;
  bottom: 22%;
}

.floating-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--primary);
  font-size: 20px;
}

.floating-card strong {
  display: block;
  font-size: 14px;
}

.floating-card small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 700;
}

.mobile-proof {
  display: none;
}

/* BENEFÍCIOS */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.benefit-card {
  min-height: 270px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  transition: 0.25s ease;
}

.benefit-card:hover {
  transform: translateY(-7px);
  border-color: rgba(215, 255, 53, 0.45);
}

.benefit-card span {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  color: var(--primary);
  font-size: 38px;
  letter-spacing: -0.06em;
}

.benefit-card h3 {
  margin-top: 34px;
  font-size: 23px;
  line-height: 1.15;
}

.benefit-card p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

/* SOBRE */
.about {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.035), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 60px;
}

.about-image-wrapper {
  position: relative;
}

.about-image-wrapper::before {
  content: "";
  position: absolute;
  inset: 28px -22px -22px 28px;
  border: 2px solid var(--primary);
  border-radius: 34px;
}

.about-image {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

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

.check-list li {
  position: relative;
  padding-left: 38px;
  color: var(--muted);
  line-height: 1.6;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: #080808;
  font-size: 14px;
  font-weight: 900;
}

/* PROGRAMAS */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.program-card {
  min-height: 455px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.25s ease;
}

.program-card:hover {
  transform: translateY(-7px);
}

.program-card.featured {
  background:
    linear-gradient(180deg, rgba(215, 255, 53, 0.16), rgba(255, 255, 255, 0.03)),
    var(--card);
  border-color: rgba(215, 255, 53, 0.5);
}

.program-label {
  display: inline-flex;
  width: fit-content;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(215, 255, 53, 0.1);
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.program-card h3 {
  margin-top: 26px;
  font-size: 30px;
  line-height: 1.05;
}

.program-card p {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.65;
}

.program-card ul {
  display: grid;
  gap: 12px;
  margin: 26px 0;
  color: var(--muted);
  list-style: none;
}

.program-card li::before {
  content: "•";
  color: var(--primary);
  margin-right: 8px;
}

/* CTA */
.cta-section {
  padding: 40px 0;
}

.cta-box {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 54px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.35), transparent 25%),
    linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #080808;
}

.cta-box .eyebrow {
  border-color: rgba(0, 0, 0, 0.25);
  background: rgba(0, 0, 0, 0.09);
  color: #080808;
}

.cta-box .eyebrow::before {
  background: #080808;
  box-shadow: none;
}

.cta-box h2 {
  max-width: 780px;
  color: #080808;
}

.cta-box p {
  max-width: 620px;
  color: rgba(0, 0, 0, 0.7);
}

/* DEPOIMENTOS */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonial-card {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.testimonial-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 16px;
}

.testimonial-card strong {
  display: block;
  margin-top: 28px;
  color: var(--text);
}

.testimonial-card span {
  display: block;
  margin-top: 5px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
}

/* FAQ */
.faq-section {
  background: rgba(255, 255, 255, 0.025);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
}

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

.faq-item {
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 22px;
  border: 0;
  background: transparent;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 16px;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-question span {
  color: var(--primary);
  font-size: 22px;
  transition: 0.25s ease;
}

.faq-answer {
  display: none;
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

/* CONTATO */
.contact {
  padding-top: 120px;
}

.contact-box {
  max-width: 900px;
  margin-inline: auto;
  padding: 64px 42px;
  border: 1px solid rgba(215, 255, 53, 0.3);
  border-radius: 36px;
  background:
    radial-gradient(circle at top, rgba(215, 255, 53, 0.14), transparent 35%),
    rgba(255, 255, 255, 0.045);
  text-align: center;
  box-shadow: var(--shadow);
}

.contact-box h2 {
  margin-top: 18px;
}

.contact-box .btn {
  margin-top: 34px;
}

.contact-info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.contact-info span {
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

/* FOOTER */
.footer {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  color: var(--muted);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
}

.footer a {
  color: var(--primary);
  font-weight: 800;
}

/* ANIMAÇÕES */
.benefit-card,
.program-card,
.testimonial-card,
.about-image-wrapper,
.about-content,
.contact-box {
  opacity: 0;
  transform: translateY(22px);
  transition: 0.7s ease;
}

.benefit-card.show,
.program-card.show,
.testimonial-card.show,
.about-image-wrapper.show,
.about-content.show,
.contact-box.show {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVO TABLET */
@media (max-width: 1024px) {
  .hero-grid,
  .about-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    text-align: center;
    margin-inline: auto;
  }

  .hero-content .eyebrow,
  .hero-actions {
    margin-inline: auto;
    justify-content: center;
  }

  .hero-content p {
    margin-inline: auto;
  }

  .hero-stats {
    margin-inline: auto;
  }

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

  .programs-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-box .btn {
    width: fit-content;
    margin-inline: auto;
  }
}

/* MENU MOBILE GERAL */
@media (max-width: 820px) {
  .menu-button {
    display: grid;
    place-items: center;
  }

  .menu {
    position: fixed;
    top: 92px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 28px;
    background: rgba(8, 8, 8, 0.96);
    backdrop-filter: blur(20px);
  }

  .menu.active {
    display: flex;
  }

  .menu a {
    padding: 12px;
    text-align: center;
  }

  .section {
    padding: 80px 0;
  }

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

  .floating-card {
    display: none;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

/* MOBILE ESTILO ANEXO */
@media (max-width: 520px) {
  body {
    background: #050505;
  }

  .container {
    width: min(100% - 24px, var(--container));
  }

  .header {
    top: 18px;
    z-index: 1000;
  }

  .nav {
    width: 100%;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    justify-content: center;
  }

  .logo {
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(8, 8, 8, 0.52);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    font-size: 11px;
    line-height: 1;
  }

  .logo span:last-child {
    display: inline;
  }

  .logo-icon {
    width: 22px;
    height: 22px;
    font-size: 8px;
  }

  .menu-button,
  .menu {
    display: none !important;
  }

  .hero {
    min-height: 100svh;
    padding: 0 0 140px;
    overflow: hidden;
    background: #070707;
  }

  .hero .container {
    width: 100%;
  }

  .hero-grid {
    position: relative;
    display: block;
    min-height: calc(100svh + 140px);
    overflow: hidden;
  }

  .hero-bg-text {
    display: none;
  }

  .hero-visual {
    position: absolute;
    inset: 0;
    z-index: 1;
    min-height: auto;
    height: 100%;
    display: block;
  }

  .hero-shape,
  .floating-card {
    display: none;
  }

  .hero-image {
    width: 100%;
    height: 100%;
    border-radius: 0;
    object-fit: cover;
    object-position: center top;
    opacity: 0.8;
    filter: grayscale(0.1) contrast(1.12) saturate(0.9);
    box-shadow: none;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 4;
    background:
      radial-gradient(circle at 20% 8%, rgba(215, 255, 53, 0.26), transparent 28%),
      linear-gradient(
        to bottom,
        rgba(5, 5, 5, 0.12) 0%,
        rgba(5, 5, 5, 0.18) 25%,
        rgba(5, 5, 5, 0.72) 58%,
        rgba(5, 5, 5, 0.98) 100%
      );
  }

  .hero-content {
    position: relative;
    z-index: 8;
    min-height: 100svh;
    max-width: none;
    padding: 110px 24px 34px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    transform: translateY(140px);
  }

  .hero-content .eyebrow {
    display: none;
  }

  .hero-content h1 {
    max-width: 345px;
    margin: 100px auto 0;
    font-size: clamp(36px, 10.5vw, 48px);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.075em;
    color: #ffffff;
    text-shadow: 0 16px 38px rgba(0, 0, 0, 0.65);
  }

  .hero-content p {
    max-width: 315px;
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13.5px;
    line-height: 1.48;
  }

  .hero-actions {
    width: 100%;
    margin-top: 32px;
    justify-content: center;
  }

  .hero-actions .btn-secondary {
    display: none;
  }

  .hero-actions .btn-primary {
    width: min(100%, 335px);
    min-height: 62px;
    padding: 16px 24px;
    justify-content: center;
    gap: 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: -0.01em;
    text-transform: none;
    box-shadow:
      0 18px 45px rgba(215, 255, 53, 0.25),
      inset 0 -2px 0 rgba(0, 0, 0, 0.12);
  }

  .hero-actions .btn-primary::after {
    content: "→";
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(8, 8, 8, 0.16);
    color: #080808;
    font-size: 18px;
    font-weight: 900;
  }

  .hero-stats {
    display: none;
  }

  .mobile-proof {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    padding: 6px 10px 6px 6px;
    border-radius: 999px;
    background: rgba(8, 8, 8, 0.48);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
  }

  .proof-avatars {
    display: flex;
    align-items: center;
  }

  .proof-avatars img {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #090909;
  }

  .proof-avatars img:not(:first-child) {
    margin-left: -9px;
  }

  .proof-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
  }

  .proof-text strong {
    color: #ffffff;
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
  }

  .proof-text span {
    color: rgba(255, 255, 255, 0.56);
    font-size: 9px;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
  }

  h2 {
    font-size: clamp(34px, 10vw, 48px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.075em;
  }

  .section-header p,
  .about-content p,
  .faq-grid p,
  .contact-box p {
    font-size: 15px;
    line-height: 1.65;
  }

  .section {
    padding: 74px 0;
  }

  .about-image {
    height: 500px;
  }

  .about-image-wrapper::before {
    inset: 18px -12px -12px 18px;
  }

  .program-card,
  .benefit-card,
  .testimonial-card {
    padding: 24px;
  }

  .cta-box {
    padding: 38px 24px;
  }

  .contact-box {
    padding: 42px 22px;
  }
}