@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat-49e242af.woff2") format("woff2");
  font-weight: 400 900;
  font-display: swap;
}

@font-face {
  font-family: "Public Sans";
  src: url("../fonts/publicsans-342344d1.woff2") format("woff2");
  font-weight: 400 900;
  font-display: swap;
}

:root {
  --dark: #000000;
  --dark-soft: #0c0c0c;
  --card: #151515;
  --card-2: #333234;
  --gold: #ffa902;
  --gold-2: #ffb400;
  --green: #00e911;
  --white: #ffffff;
  --muted: #8e8e8e;
  --line: #363636;
  --radius: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--dark);
  color: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body::-webkit-scrollbar {
  width: 10px;
}

body::-webkit-scrollbar-track {
  background: var(--dark-soft);
}

body::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 10px;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.section {
  padding: 70px 0;
}

.section--dark {
  background: var(--dark);
}

.section--light {
  background: var(--white);
  color: var(--dark);
}

.section__center {
  max-width: 820px;
  text-align: center;
}

.grid {
  display: grid;
  gap: 60px;
}

.grid--lead,
.grid--about,
.grid--faq {
  display: grid;
  gap: 60px;
  grid-template-columns: 1fr 1fr;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
}

.lead-form,
.lead-copy {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.eyebrow {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow--muted {
  color: #7c7c7c;
}

.eyebrow--white {
  color: var(--white);
}

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

h1,
h2 {
  font-weight: 400;
  line-height: 1.15;
  text-transform: uppercase;
}

h1 {
  max-width: 920px;
  color: var(--dark);
  font-size: clamp(2rem, 4.2vw, 49px);
}

h2 {
  font-size: clamp(1.8rem, 3vw, 36px);
}

h3 {
  font-size: 22px;
  line-height: 1.2;
}

p {
  color: var(--muted);
  font-size: 18px;
}

strong {
  font-weight: 900;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  line-height: 1;
  min-height: 54px;
  padding: 16px 30px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.btn--green {
  background: var(--green);
  color: var(--dark);
  box-shadow: 0 10px 30px rgba(0, 233, 17, .22);
}

.btn--gold {
  width: 100%;
  background: var(--gold-2);
  color: var(--dark);
}

.btn--white {
  background: var(--white);
  color: var(--dark);
}

.hero {
  min-height: 800px;
  background: var(--gold) url("../images/hero-nova-00-lp.webp") center top / cover no-repeat;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 80px 0 130px;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.hero__logo {
  width: 170px;
  animation: logoEntrance .8s ease forwards, logoGlow 2.5s ease-in-out 1s infinite;
}

.hero p {
  max-width: 450px;
  color: var(--dark);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
}

.ticker {
  position: relative;
  z-index: 2;
  width: 110vw;
  margin-left: -5vw;
  overflow: hidden;
  padding: 14px 0;
  box-shadow: 0 7px 6px rgba(0, 0, 0, .37);
  white-space: nowrap;
}

.ticker--dark {
  margin-top: -72px;
  background: var(--dark);
  color: var(--white);
  transform: rotate(7deg) scale(1.1);
}

.ticker--light {
  background: linear-gradient(90deg, #fff 50%, #999 100%);
  color: var(--dark);
  transform: rotate(-1deg) scale(1.1);
}

.ticker__track {
  display: inline-block;
  width: max-content;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  animation: marquee 95s linear infinite;
}

.ticker__track--reverse {
  animation-name: marqueeReverse;
}

.lead-section {
  padding-top: 110px;
}

.lead-copy h2 {
  max-width: 460px;
  margin-bottom: 32px;
}

.info-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 20px;
  padding: 34px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 15px;
}

.info-card p {
  margin-top: 14px;
  font-size: 18px;
  line-height: 1.6;
}

.lead-form {
  padding: 11px;
  background: rgba(0, 0, 0, .65);
  border-radius: var(--radius);
}

.lead-form label {
  display: block;
  margin: 6px 0 8px;
  color: var(--white);
  font-family: "Public Sans", Arial, sans-serif;
  font-size: 16px;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 56px;
  margin-bottom: 12px;
  padding: 0 16px;
  border: 0;
  border-radius: 5px;
  background: var(--card-2);
  color: var(--white);
  font-family: "Public Sans", Arial, sans-serif;
  font-size: 16px;
  outline: none;
}

.lead-form input::placeholder {
  color: #b8b8b8;
}

.lead-form input:focus,
.lead-form select:focus {
  box-shadow: 0 0 0 2px rgba(255, 180, 0, .45);
}

.conditional-fields[hidden] {
  display: none;
}

.form-message {
  min-height: 22px;
  margin: 0 0 10px;
  color: #ff7474;
  font-family: "Public Sans", Arial, sans-serif;
  font-size: 14px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.testimonials h2,
.services h2,
.method h2 {
  max-width: 760px;
  margin: 0 auto;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 54px;
}

.video-grid video,
.video-grid .yt-video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: var(--dark);
  border-radius: var(--radius);
  border: 0;
}

.about__image img {
  width: min(468px, 100%);
  margin: 0 auto;
}

.about__text {
  max-width: 820px;
}

.about__text h2 {
  margin-bottom: 22px;
}

.about__text p + p {
  margin-top: 16px;
}

.method__media {
  position: relative;
  margin-top: 44px;
  display: grid;
  place-items: center;
}

.method__media img {
  width: min(800px, 100%);
  opacity: .95;
}

.method__media video {
  position: absolute;
  width: min(650px, 76%);
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .8);
}

.method__badge {
  position: absolute;
  left: 18%;
  bottom: 18%;
  padding: 12px 18px;
  border: 2px solid rgba(255, 225, 168, .09);
  border-radius: 8px;
  background: rgba(114, 75, 0, .49);
  color: #ffe1a6;
  font-weight: 700;
  box-shadow: 0 0 38px rgba(255, 169, 2, .58);
  animation: float 2.5s ease-in-out infinite;
}

.carousel {
  margin-top: 45px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.carousel__viewport {
  overflow: hidden;
  border-radius: var(--radius);
}

.carousel__track {
  display: flex;
  transition: transform .35s ease;
}

.carousel__track img {
  flex: 0 0 100%;
  width: 100%;
  border-radius: var(--radius);
}

.carousel__nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.carousel__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: #1a1a1a;
  color: var(--white);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  transition: background .2s ease;
}

.carousel__btn:hover {
  background: #2e2e2e;
}

.plans__image img {
  margin: 0 auto;
  border-radius: var(--radius);
}

.cta-final {
  background: var(--gold);
  color: var(--dark);
}

.cta-final p {
  max-width: 680px;
  margin: 18px auto 0;
  color: var(--dark);
}

.cta-final__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.online-dot {
  position: relative;
  padding-left: 18px;
  color: var(--dark);
  font-weight: 600;
}

.online-dot::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #69d77d;
  transform: translateY(-50%);
  animation: pulse 1s infinite;
}

.faq__intro h2 {
  font-size: clamp(2rem, 4vw, 36px);
  font-weight: 800;
}

.faq__intro p {
  max-width: 300px;
  margin-top: 16px;
}

.faq__list {
  display: grid;
  gap: 10px;
}

details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 5px;
}

summary {
  cursor: pointer;
  list-style: none;
  padding: 18px;
  font-weight: 700;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
}

details[open] summary::after {
  content: "-";
}

details p {
  padding: 0 18px 20px;
  font-size: 16px;
  line-height: 1.6;
}

.footer {
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, .13);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 45px 0;
}

.footer img {
  width: 150px;
}

.footer__social {
  display: flex;
  gap: 10px;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  background: #1a1a1a;
  border-radius: 10px;
  color: var(--white);
  transition: background .2s ease;
}

.footer__social a:hover {
  background: #2e2e2e;
}

.footer p {
  color: var(--muted);
  font-size: 16px;
  text-align: center;
}

.footer span {
  color: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s ease, transform .65s ease;
  transition-delay: var(--reveal-delay, 0s);
}

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

@keyframes marquee {
  from { transform: translateX(-25%); }
  to { transform: translateX(-50%); }
}

@keyframes marqueeReverse {
  from { transform: translateX(-50%); }
  to { transform: translateX(-25%); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(105, 215, 125, .75); }
  100% { box-shadow: 0 0 0 12px rgba(105, 215, 125, 0); }
}

/* ── Páginas de Obrigado ── */
.thankyou-header {
  background: var(--dark);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.thankyou-header__inner {
  display: flex;
  justify-content: center;
  padding: 32px 0;
}

.thankyou-header img {
  width: 150px;
}

.thankyou-main {
  min-height: calc(100vh - 280px);
  display: flex;
  align-items: center;
  padding: 80px 0;
}

.thankyou-content {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
}

.thankyou-title {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 58px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0 0 28px;
}

.thankyou-title span {
  color: var(--gold);
}

.thankyou-text {
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 20px);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 44px;
}

.thankyou-divider {
  width: 80px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto;
  border-radius: 2px;
}

@keyframes logoEntrance {
  from { opacity: 0; transform: scale(.85); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes logoGlow {
  0%, 100% { filter: drop-shadow(0 0 0px rgba(255, 169, 2, 0)); }
  50%       { filter: drop-shadow(0 0 18px rgba(255, 169, 2, .75)); }
}

@media (max-width: 900px) {
  .hero {
    min-height: 680px;
    padding: 70px 0 120px;
  }

  .grid--lead,
  .grid--about,
  .grid--faq {
    grid-template-columns: 1fr;
  }

  .video-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-inline: auto;
  }

  .footer__inner {
    flex-direction: column;
  }
}

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

  .section {
    padding: 50px 0;
  }

  .hero {
    min-height: 610px;
    background-image: url("../images/background-mobile.png");
    justify-items: center;
    padding: 50px 0 130px;
  }

  .hero__logo {
    width: 220px;
  }

  .hero p {
    max-width: 310px;
    font-size: 16px;
  }

  .ticker {
    padding: 12px 0;
  }

  .ticker__track {
    font-size: 14px;
  }

  .lead-section {
    padding-top: 70px;
  }

  .lead-copy {
    text-align: center;
  }

  .info-card {
    grid-template-columns: 1fr;
    padding: 26px 22px;
    text-align: left;
  }

  .info-card img {
    margin-top: 0;
  }

  .method__media video {
    position: static;
    width: 100%;
    margin-top: 20px;
  }

  .method__badge {
    left: 20px;
    bottom: 92px;
    font-size: 12px;
  }

  .cta-final__actions {
    align-items: stretch;
  }

  .cta-final__actions .btn {
    width: 100%;
  }
}
