/* ===========================================================
   TYPOGRAPHY & ROOT
   =========================================================== */
@font-face {
  font-family: "Akkordeon";
  src: url("assets/akkordeon-eleven.otf");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #000000;
  --bg-elev: #111;
  --text: #f0f2f8;
  --text-mute: rgba(255, 255, 255, 0.75);
  --text-dim: #8a8ea8;
  --text-dimmer: #4a4d62;
  --blue: #4dd0f8;
  --orange-1: #ff491b;
  --orange-2: #ff9500;
  --card-bg: rgba(255, 255, 255, 0.06);
  --card-border: rgba(255, 255, 255, 0.12);
  --card-bg-hover: rgba(255, 255, 255, 0.1);
  --max: 1280px;
  --pad-x: clamp(16px, 4vw, 80px);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html,
body {
  height: 100%;
}
html {
  scroll-behavior: auto;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: "Roboto Mono", ui-monospace, monospace;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}

/* ===========================================================
   SHARED HELPERS
   =========================================================== */

.section-title {
  font-family: "Akkordeon", "Inter", sans-serif;
  text-transform: uppercase;
  font-size: clamp(40px, 8vw, 98px);
  line-height: 0.95;

  color: var(--text);
}

.section-lead {
  font-family: "Roboto Mono", monospace;
  font-size: clamp(14px, 1.4vw, 20px);
  line-height: 1.58;
  color: var(--text-mute);
  max-width: 70ch;
}

/* ----- Badges ----- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  padding: 10px 16px 10px 10px;
  border-radius: 65px;
  background: rgba(255, 255, 255, 0.1);
  font:
    600 14px/1.3 "Roboto Mono",
    monospace;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  white-space: nowrap;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.badge::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow:
    inset 1px 1px 0 0 rgba(143, 231, 255, 0.2),
    inset -1px -1px 0 0 rgba(143, 231, 255, 0.2);
}
.badge--blue {
  color: var(--blue);
}
.badge--blue::before {
  box-shadow:
    inset 1px 1px 0 0 rgba(143, 231, 255, 0.2),
    inset -1px -1px 0 0 rgba(143, 231, 255, 0.2);
}
.badge--orange {
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  background-image: linear-gradient(
    90deg,
    var(--orange-1) 0%,
    var(--orange-2) 39%,
    var(--orange-1) 100%
  );
}
.badge--orange::before {
  box-shadow:
    inset 1px 1px 0 0 rgba(255, 130, 130, 0.2),
    inset -1px -1px 0 0 rgba(255, 130, 130, 0.2);
}
.badge--orange .badge__icon {
  color: var(--orange-1);
}
.badge--orange span {
  background: linear-gradient(
    90deg,
    var(--orange-1) 0%,
    var(--orange-2) 39%,
    var(--orange-1) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.badge__icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: var(--blue);
}

/* ----- CTA Button ----- */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 22px;
  background: rgba(255, 255, 255, 0.92);
  color: rgba(0, 0, 0, 0.9);
  font:
    500 16px/1 "Roboto Mono",
    monospace;

  text-transform: uppercase;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
  cursor: pointer;
  border: 0;
}
.cta-btn:hover {
  background: white;
  transform: translateY(-1px);
}
.cta-btn svg {
  width: 12px;
  height: 12px;
}
.cta-btn--full {
  width: 100%;
  padding: 18px;
}

/* ===========================================================
   SMOOTH SCROLL CONTAINER
   ScrollSmoother sets its own overflow when active. We avoid
   forcing it here so the page still scrolls natively if the
   plugin is unavailable (mobile / blocked CDN).
   =========================================================== */
#smooth-wrapper,
#smooth-content {
  width: 100%;
}

.botaoInicial {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
  padding-bottom: 28px;
}

/* ===========================================================
   HERO
   =========================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  width: 100%;
  padding: clamp(110px, 14vw, 180px) var(--pad-x) clamp(60px, 8vw, 120px);
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--bg);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero__image,
.hero__video {
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  height: 100%;
  width: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}
.hero__video {
  opacity: 0;
  transition: opacity 0.9s ease-out;
}
.hero__video.is-ready {
  opacity: 1;
}
.hero__fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0) 28.68%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 50%;
  display: flex;
  flex-direction: column;
}
.hero__title {
  font-family: "Akkordeon", "Inter", sans-serif;
  text-transform: uppercase;
  font-size: 4.7vw;
  line-height: 4.4vw;
  padding-bottom: 1.8vw;
  padding-top: 1.8vw;
  color: var(--text);
}
.hero__lead {
  font-size: clamp(14px, 1vw, 1vw);
  color: var(--text-mute);
  line-height: 1.5;
  max-width: 74%;
  padding-bottom: clamp(28px, 2vw, 2vw);
}
.cta-btn {
  align-self: flex-start;
}

.divSecoes {
  position: relative;
  width: 100%;
}

.bgSecoes {
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.06;
}

.divSecoes::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(
    180deg,
    #000 0%,
    rgba(0, 0, 0, 0) 10%,
    rgba(0, 0, 0, 0) 92.78%,
    #000 100%
  );

  pointer-events: none;
}

/* ===========================================================
   PRÓXIMAS SEMANAS VOCÊ VAI
   =========================================================== */
.proximas {
  padding: 60px var(--pad-x);
  text-align: center;

  position: relative;
}
.proximas__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin: 0 auto clamp(40px, 6vw, 80px);
  max-width: 1161px;
}
.proximas__head .section-title {
  text-align: center;
  max-width: 24ch;
}
.proximas__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 339px));
  gap: clamp(20px, 2vw, 61px);
  justify-content: center;
  max-width: 1540px;
  margin: 0 auto;
}
.prox-card {
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 28px;
  overflow: hidden;
  min-height: 196px;
}
.prox-card__num {
  position: absolute;
  top: 13px;
  right: 16px;
  font:
    400 160px/1 "Roboto Mono",
    monospace;
  color: rgba(255, 255, 255, 0.06);
  pointer-events: none;
  user-select: none;
  line-height: 0.8;
}
.prox-card__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: white;
  flex: 0 0 40px;
}
.prox-card__icon svg {
  width: 22px;
  height: 22px;
}
.prox-card__icon--orange {
  background: linear-gradient(135deg, var(--orange-1), var(--orange-2));
}
.prox-card__icon--blue {
  background: linear-gradient(135deg, #1a7fc7, var(--blue));
}
.prox-card p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-mute);
}

/* ===========================================================
   REALIDADE
   =========================================================== */
.realidade {
  position: relative;
  padding: clamp(120px, 16vw, 220px) var(--pad-x);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.realidade__obsoleto {
  position: absolute;
  top: 30%;
  left: 50%;
  width: 90vw;
  max-width: 2400px;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}
.realidade__obsoleto path {
  opacity: 0.4;
  stroke: #ff491b;
  stroke-width: 4;
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
}
.realidade__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 3vw, 44px);
  max-width: 1161px;
  margin: 0 auto;
}
.realidade .section-title {
  text-align: center;
  max-width: 18ch;
}
.realidade .section-lead {
  text-align: center;
}

/* ===========================================================
   PROJEÇÃO
   =========================================================== */
.projecao {
  padding: 0px var(--pad-x) 80px;
  text-align: center;
}
.projecao__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin: 0 auto clamp(40px, 6vw, 60px);
  max-width: 980px;
}
.compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 524px));
  gap: 24px;
  justify-content: center;
  max-width: 1080px;
  margin: 0 auto;
}
.compare__card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  overflow: hidden;
  text-align: left;
}
.compare__card--pro {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow:
    2px 2px 0 1px rgba(255, 255, 255, 0.12),
    0 20px 60px 0 rgba(255, 255, 255, 0.08);
}
.compare__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
}
.compare__head h3 {
  font:
    700 17.6px/1.6 "Inter",
    "Roboto Mono",
    monospace;
  color: var(--text);
}
.compare__card--pro .compare__head h3 {
  color: rgba(255, 73, 27, 0.95);
}
.compare__head svg {
  width: 27px;
  height: 27px;
  color: var(--text-dim);
}
.compare__body {
  padding: 12px 28px;
}
.compare__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.compare__row:last-child {
  border-bottom: 0;
}
.compare__row span {
  font:
    400 14.08px/1.6 "Inter",
    "Roboto Mono",
    monospace;
  color: var(--text-dimmer);
}
.compare__row strong {
  font:
    600 15.2px/1.6 "Inter",
    "Roboto Mono",
    monospace;
  color: var(--text);
  text-align: end;
}
.compare__row strong.dim {
  color: var(--text-dim);
}

/* ===========================================================
   CONTEÚDO HORIZONTAL
   =========================================================== */
.conteudo {
  position: relative;
  background: var(--bg);
  height: 100vh;
}
.conteudo__head {
  text-align: center;
  padding: 5vh var(--pad-x) clamp(40px, 6vw, 60px);
  padding-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.conteudo__track-wrap {
  position: relative;
  min-height: 600px;
  overflow: hidden;
}
.conteudo__track {
  display: flex;
  gap: 20px;
  padding: 0 var(--pad-x);
  align-items: center;
  will-change: transform;
}
.mod-card {
  flex: 0 0 clamp(280px, 28vw, 460px);
  height: clamp(300px, 67vh, 67vh);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.mod-card__media {
  flex: 1 1 auto;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 20px;
}
.mod-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgb(0, 0, 0) 100%);
  pointer-events: none;
}
.badge--mod {
  background: rgba(0, 0, 0, 0.4);
  color: var(--text);
  padding: 8px 14px;
  font-size: 12px;

  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.badge--mod::before {
  display: none;
}
.mod-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 22px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 2;
}
.mod-card__info h3 {
  font-family: "Roboto Mono", monospace;
  font-size: clamp(20px, 1.4vw, 32px);
  font-weight: 400;
  line-height: 1;

  text-transform: none;
}
.mod-card__info p {
  font-size: 16px;
  color: var(--text-mute);
  line-height: 1.45;
}
.mod-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 6px;
}
.mod-card__tags span {
  display: inline-block;
  padding: 10px 12px;
  font:
    500 14px/1 "Roboto Mono",
    monospace;
  text-transform: uppercase;

  color: var(--text-mute);
  background: rgba(0, 0, 0, 0.301);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 65px;
  white-space: nowrap;
  backdrop-filter: blur(12px);
}

/* ===========================================================
   BÔNUS
   =========================================================== */
.bonus {
  width: 100%;
  padding: 40px var(--pad-x);
  text-align: center;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.divEsquerda {
  width: 60%;
  display: flex;
  flex-direction: column;
  align-items: start;
  padding-left: 5vw;
}

.divDireita {
  width: 60vw;
  height: 40vw;
  min-height: 500px;
  position: absolute;
  right: 0;
  top: -0%;
}

.divDireita canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}
.bonus__head {
  display: flex;
  flex-direction: column;

  gap: 32px;
  margin-bottom: clamp(40px, 6vw, 80px);

  h2 {
    text-align: start;
  }
}
.bonus__grid {
  display: flex;
  grid-template-columns: repeat(2, minmax(0, 339px));
  gap: clamp(40px, 6vw, 60px);
  justify-content: start;
  align-items: start;

  margin: 0 auto;
}
.feature-card {
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 28px;
  overflow: hidden;
}
.feature-card__num {
  position: absolute;
  top: 13px;
  right: 18px;
  font:
    400 160px/1 "Roboto Mono",
    monospace;
  color: rgba(255, 255, 255, 0.06);
  pointer-events: none;
  user-select: none;
}
.feature-card__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: white;
}
.feature-card__icon svg {
  width: 24px;
  height: 24px;
}
.feature-card__icon--orange {
  background: linear-gradient(135deg, var(--orange-1), var(--orange-2));
}
.feature-card__icon--blue {
  background: linear-gradient(135deg, #2196f3, var(--blue));
}
.feature-card p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-mute);
}

/* ===========================================================
   RESULTADOS
   =========================================================== */
.resultados {
  padding: clamp(80px, 10vw, 140px) var(--pad-x);
  text-align: center;
}
.resultados__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin-bottom: clamp(40px, 6vw, 80px);
}
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 465px));
  gap: 24px;
  justify-content: center;
  max-width: 1490px;
  margin: 0 auto;
}
.testimonial {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.testimonial header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.testimonial__person {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial__person img {
  width: 55px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial__person strong {
  font:
    700 18px/1.3 "Roboto Mono",
    monospace;
  color: var(--text-mute);
}
.testimonial__person span {
  font:
    400 13px/1.3 "Roboto Mono",
    monospace;
  color: var(--text-mute);
  display: block;
  margin-top: 2px;
}
.stars {
  display: flex;
  gap: 2px;
  color: var(--orange-2);
}
.stars svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.testimonial p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-mute);
}

/* ===========================================================
   PRICING
   =========================================================== */
.pricing {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(80px, 10vw, 140px) var(--pad-x);
}
.pricing__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      180deg,
      rgba(10, 10, 10, 0.55) 0%,
      rgba(10, 10, 10, 0.2) 30%,
      rgba(10, 10, 10, 0.5) 100%
    ),
    url("assets/bg-fire.webp") center/cover no-repeat;
}
.pricing__inner {
  display: flex;

  max-width: 1610px;
  margin: 0 auto;

  .pricing__left {
    width: 100%;
  }
}
.pricing__left {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 20px;
  gap: clamp(24px, 3vw, 44px);
}

.divTitulo {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.pricing__title {
  font-size: 5vw;
  line-height: 0.95;
  width: 90%;
}

.div__guarantee {
  display: flex;
  justify-content: end;
}
.pricing__guarantee {
  display: flex;
  gap: 18px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 22px 0px 0px 22px;
  border-top: 2px solid rgba(255, 255, 255, 0.15);
  border-left: 2px solid rgba(255, 255, 255, 0.15);
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
  padding: 28px 26px;
  max-width: 615px;
  align-items: flex-start;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.pricing__guarantee-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  color: var(--text);
}
.pricing__guarantee-icon svg {
  width: 100%;
  height: 100%;
}
.pricing__guarantee strong {
  font:
    700 18px/1.4 "Roboto Mono",
    monospace;
  color: var(--text-mute);
  display: block;
  margin-bottom: 6px;
}
.pricing__guarantee p {
  font-size: 15px;
  color: var(--text-mute);
  line-height: 1.5;
}
.pricing__hammer {
  width: 4vw;

  margin-top: 10px;
  opacity: 0.85;
  position: absolute;
  bottom: 0;
  img {
    width: 100%;
  }
}
.pricing__hammer svg {
  width: 100%;
  height: 100%;
}

.pricing__card {
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 22px;
  padding: 44px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 508px;
  text-align: center;
  justify-self: end;
  width: 100%;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.pricing__from {
  font-size: 14px;
  color: var(--text-mute);
}
.pricing__from s {
  background: linear-gradient(
    90deg,
    var(--orange-1) 0%,
    var(--orange-2) 39%,
    var(--orange-1) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pricing__times {
  font-size: 13.6px;
  color: var(--text-dim);
}
.pricing__price {
  font-family: "Akkordeon", "Inter", sans-serif;
  font-size: clamp(60px, 8vw, 98px);
  line-height: 1;
  color: white;

  margin: 4px 0 6px;
}
.pricing__cash {
  font-size: 13.6px;
  color: var(--text-dim);
  margin-bottom: 10px;
}
.pricing__list {
  list-style: none;
  text-align: left;
  margin: 16px 0 8px;
}
.pricing__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: var(--text-mute);
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.pricing__list li:last-child {
  border-bottom: 0;
}
.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  color: var(--text-mute);
  font-size: 14px;
}

/* ===========================================================
   FAQ
   =========================================================== */
.faq {
  padding: clamp(80px, 12vw, 160px) var(--pad-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  position: relative;
}
.faq__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 80px);
}
.faq__head .section-title {
  font-size: clamp(40px, 8vw, 96px);
}
.faq__list {
  max-width: 900px;
  display: flex;
  flex-direction: column;
}
.faq__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.faq__summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  font:
    600 16px/1.4 "Inter",
    "Roboto Mono",
    monospace;
  color: var(--text);
  user-select: none;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
}
.faq__chev {
  width: 16px;
  height: 16px;
  color: var(--text-mute);
  transition: transform 0.3s ease;
  flex: 0 0 16px;
}
.faq__item--open .faq__chev {
  transform: rotate(180deg);
}
.faq__body {
  display: grid;
  grid-template-rows: 0fr;
  transition:
    grid-template-rows 0.3s ease,
    padding-bottom 0.3s ease;
  padding-bottom: 0;
}
.faq__item--open .faq__body {
  grid-template-rows: 1fr;
  padding-bottom: 22px;
}
.faq__answer {
  overflow: hidden;
  font-size: 14.7px;
  line-height: 1.75;
  color: var(--text-dim);
  max-width: 720px;
}

/* ===========================================================
   FOOTER
   =========================================================== */
.footer {
  padding: 30px var(--pad-x);
  text-align: center;
  font-size: 14px;
  color: var(--text-mute);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ===========================================================
   RESPONSIVE
   =========================================================== */

/* ----- TABLET (≤ 1024px) ----- */

@media (max-width: 1406px) {
  .pricing__title {
    font-size: 6vw;
  }
}

@media (max-width: 1406px) {
  .pricing__title {
    font-size: 5vw;
  }
  .divEsquerda {
    padding-left: 0;
  }

  .pricing__hammer {
    display: none;
  }
}

@media (max-width: 1024px) {
  .proximas__grid {
    grid-template-columns: repeat(2, minmax(0, 339px));
  }
  .compare,
  .testimonials {
    grid-template-columns: 1fr;
    max-width: 560px;
  }
  .pricing__inner {
    flex-direction: column;
    align-items: center;
  }
  .pricing__card {
    justify-self: center;
    max-width: 560px;
  }
  .div__guarantee {
    justify-content: center;
  }
  .pricing__guarantee {
    max-width: 560px;
    border-radius: 22px;
  }
  .bonus__grid {
    grid-template-columns: 1fr;
  }
  .divTitulo {
    align-items: center;
    text-align: center;
  }
  .bonus__grid {
    gap: 20px;
  }
  .divEsquerda {
    width: 80%;
  }

  .mod-card {
    flex-basis: 60vw;
    max-width: 460px;
  }
}

/* ----- MOBILE (≤ 720px) ----- */
@media (max-width: 720px) {
  :root {
    --pad-x: 20px;
  }

  .hero {
    padding: 60px 20px 0;
    min-height: 100svh;
    display: grid;
    grid-template-rows: auto 1fr;
    align-items: start;
    text-align: center;
  }
  .hero__content {
    grid-row: 1;
    align-items: center;
    text-align: center;
    width: 100%;
    margin-bottom: 24px;
    z-index: 2;
  }
  .hero__title {
    max-width: 100%;
    font-size: 9vw;
    line-height: 8vw;
    margin-top: 28px;
  }
  .hero__lead {
    max-width: 100%;
  }
  .hero__media {
    grid-row: 2;
    position: relative;
    inset: auto;
    width: 100%;
    height: 100%;
    min-height: 360px;
  }
  .hero__image,
  .hero__video {
    position: absolute;
    bottom: 0;
    top: auto;
    left: 50%;
    right: auto;
    transform: translateX(-68%);
    height: 112%;
    width: auto;
    min-width: 100%;
    max-width: none;
    object-position: center bottom;
  }
  .hero__fade {
    width: 100vw;
    left: -20px;
    height: 112%;
    top: -12%;
    background: linear-gradient(
      180deg,
      #000 0%,
      rgba(0, 0, 0, 0) 20%,
      rgba(0, 0, 0, 0) 80.78%,
      #000 100%
    );
  }

  .compare__body {
    padding: 12px 16px;
  }

  .cta-btn {
    align-self: center;
  }

  .pricing .section-title {
    font-size: 10vw;
  }
  .pricing__left {
    padding-bottom: 12px;
  }

  .section-title {
    font-size: 8.5vw;
  }

  .conteudo .section-title {
    margin-bottom: 5vh;
  }
  .pricing__price {
    font-size: clamp(54px, 16vw, 80px);
  }

  .conteudo__head {
    gap: 24px;
    padding-bottom: 0;
  }

  .mod-card {
    flex-basis: 78vw;
    max-width: 380px;
  }
  .mod-card__info h3 {
    font-size: 28px;
  }

  .testimonials,
  .compare,
  .bonus__grid,
  .proximas__grid {
    grid-template-columns: 1fr;
    flex-direction: column;
    width: 100%;
    gap: 16px;
  }

  .bonus {
    flex-direction: column;
    padding-bottom: 0;
    position: relative;
    margin-bottom: -40px;
  }
  .divEsquerda {
    width: 100%;
    align-items: center;
  }

  .bonus__head {
    align-items: center;
  }

  .divDireita {
    margin-top: -32px;
    width: 100vw;
    position: relative;
    left: -20px;
  }

  .resultados {
    padding-top: 0;
  }

  .pricing {
    padding: 80px 20px;
  }
  .pricing__card {
    padding: 30px 22px;
  }
  .pricing__guarantee {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 22px;
  }

  .faq__head .section-title {
    font-size: clamp(40px, 13vw, 64px);
  }
  .faq__summary {
    font-size: 15px;
    padding: 18px 0;
  }

  .feature-card__num {
    font-size: 110px;
    top: 8px;
    right: 14px;
  }

  .realidade {
    padding: 100px 20px;
  }
  .realidade__obsoleto {
    top: 17%;
  }

  .projecao__head {
    gap: 20px;
  }
}

/* ----- ULTRA WIDE (≥ 1920px) ----- */
@media (min-width: 1921px) {
}

/* ----- ULTRA-ULTRA WIDE (≥ 2400px) ----- */
@media (min-width: 2400px) {
  body {
    font-size: 18px;
  }
  .section-title {
    font-size: 120px;
  }
  .hero__title {
    font-size: 130px;
  }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
