/* =========================================================
   STYLE.CSS
   Base limpa, essencial e modular para a landing page
   Objetivo: manter apenas a estrutura visual necessária
   ========================================================= */

/* =========================================================
   RESET BÁSICO
   ========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  min-width: 0;
}

/* =========================================================
   HTML / BODY
   ========================================================= */
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  background: #0d0f14;
  color: #f5f7fb;
  line-height: 1.6;
  overflow-x: hidden;
}

/* =========================================================
   ELEMENTOS GERAIS
   ========================================================= */
img,
iframe {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

iframe {
  width: 100%;
  border: 0;
}

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

p,
ul,
h1,
h2,
h3,
h4 {
  margin-top: 0;
}

ul {
  margin-bottom: 0;
}

/* =========================================================
   WRAPPER GERAL
   ========================================================= */
.page-shell {
  min-height: 100vh;
}

/* =========================================================
   CONTAINERS
   ========================================================= */
.container {
  width: min(100%, 1160px);
  margin: 0 auto;
  padding-inline: 20px;
}

.container--narrow {
  width: min(100%, 860px);
}

/* =========================================================
   SEÇÕES
   ========================================================= */
.section {
  padding: 72px 0;
}

.section--hero {
  padding: 88px 0 72px;
}

.section--soft {
  background: #131720;
}

/* =========================================================
   TIPOGRAFIA DE APOIO
   ========================================================= */
.eyebrow,
.offer-box__badge,
.label {
  display: inline-block;
  border-radius: 999px;
  font-weight: 700;
}

.eyebrow {
  margin: 0 auto 18px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #d6dbe6;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: normal;
  text-align: center;
  width: fit-content;
  max-width: 100%;
  line-height: 1.35;
}

.text-accent {
  color: #ffd54a;
}

.label {
  padding: 2px 10px;
  font-size: 0.9em;
  white-space: nowrap;
}

.label--danger {
  background: rgba(255, 80, 80, 0.14);
  color: #ff7b7b;
}

.label--success {
  background: rgba(70, 201, 120, 0.14);
  color: #71e39b;
}

.price-old {
  color: #b6bece;
  text-decoration: line-through;
}

/* =========================================================
   TÍTULOS E TEXTOS
   Todos os títulos possíveis centralizados
   ========================================================= */
.section-title,
.section-subtitle,
.section-subheading,
.section-text,
.video-card__title,
.offer-box__title,
.offer-title,
.hero__title,
.hero__subtitle,
.hero__note,
.author-card__content .section-title,
.bonus-card__content h3 {
  text-align: center;
}

.section-title {
  margin-bottom: 20px;
  color: #ffffff;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.2;
  font-weight: 800;
}

.section-title--center {
  text-align: center;
}

.section-title--small {
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
}

.section-subtitle {
  margin: 0 auto 28px;
  max-width: 820px;
  color: #d8deea;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  line-height: 1.5;
  font-weight: 600;
}

.section-subtitle--center {
  text-align: center;
}

.section-subheading {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
}

.section-text {
  margin: 0 auto 18px;
  max-width: 860px;
  color: #d3d9e4;
  font-size: 1rem;
}

.section-text--center {
  text-align: center;
}

.section-text--strong {
  color: #ffffff;
  font-weight: 700;
}

/* =========================================================
   ANIMAÇÃO DE SURGIMENTO NO SCROLL
   Base visual para uso com JS via IntersectionObserver
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translate3d(0, 40px, 0);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
  will-change: opacity, transform;
}

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

/* Variações opcionais para refinamento futuro */
.reveal--soft {
  transform: translate3d(0, 24px, 0);
}

.reveal--left {
  transform: translate3d(-40px, 0, 0);
}

.reveal--right {
  transform: translate3d(40px, 0, 0);
}

.reveal--zoom {
  transform: translate3d(0, 24px, 0) scale(0.96);
}

.reveal--left.is-visible,
.reveal--right.is-visible,
.reveal--soft.is-visible,
.reveal--zoom.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}

/* Evita animação excessiva para quem prefere menos movimento */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.is-visible,
  .reveal--soft,
  .reveal--left,
  .reveal--right,
  .reveal--zoom {
    opacity: 1;
    transform: none;
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* =========================================================
   HERO
   ========================================================= */
.hero__content {
  width: min(100%, 860px);
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__title {
  margin-bottom: 18px;
  color: #ffffff;
  font-size: clamp(2rem, 4.6vw, 3.7rem);
  line-height: 1.12;
  font-weight: 900;
}

.hero__subtitle {
  margin: 0 auto 28px;
  max-width: 820px;
  color: #dbe1eb;
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.hero__note {
  margin: 22px auto 0;
  max-width: 720px;
  color: #d0d7e2;
  font-size: 0.98rem;
}

/* =========================================================
   VÍDEO PRINCIPAL E EMBEDS
   ========================================================= */
.video-frame,
.proof-image {
  margin: 32px auto 0;
  width: 100%;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #090b10;
}

.video-frame {
  max-width: 860px;
}

.proof-image {
  max-width: 760px;
  background: #0a0d12;
}

/* =========================================================
   PLAYER PRINCIPAL CONVERTEAI
   ========================================================= */
.converteai-player {
  position: relative;
  width: 100%;
  background: #090b10;
}

.converteai-player__thumb,
#thumb_67d9bcd0b5e657217ff9e668,
.converteai-player__backdrop,
#backdrop_67d9bcd0b5e657217ff9e668 {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.converteai-player__thumb,
#thumb_67d9bcd0b5e657217ff9e668 {
  object-fit: cover;
}

/* =========================================================
   EMBEDS DE VÍDEO
   ========================================================= */
.embed-responsive {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  background: #080a0f;
}

.embed-responsive iframe {
  width: 100%;
  height: 100%;
}

/* =========================================================
   BOTÕES / CTA
   ========================================================= */
.cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 24px;
  border: 0;
  border-radius: 14px;
  font-weight: 800;
  text-align: center;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease,
    box-shadow 0.2s ease;
  cursor: pointer;
}

.btn--primary {
  background: #ffd54a;
  color: #111318;
  box-shadow: 0 10px 28px rgba(255, 213, 74, 0.16);
}

.btn--large {
  width: min(100%, 520px);
  font-size: 1rem;
}

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

.btn:active {
  transform: translateY(0);
}

/* =========================================================
   LISTAS
   ========================================================= */
.benefit-list,
.offer-list {
  color: #e7ebf3;
  padding-left: 22px;
}

.benefit-list {
  margin: 28px 0 0;
}

.offer-list {
  margin: 0;
}

.benefit-list li,
.offer-list li {
  margin-bottom: 14px;
}

.offer-list li:last-child,
.benefit-list li:last-child {
  margin-bottom: 0;
}

/* =========================================================
   CARD AUTOR
   Imagem grande acima e texto em card abaixo
   ========================================================= */
.author-card {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

.author-card__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  overflow: visible;
}

.author-card__image img {
  display: block;
  width: 100%;
  max-width: 940px;
  height: auto;
  margin: 0 auto;
  border-radius: 22px;
  object-fit: cover;
  transform: none;
  transform-origin: center center;
  filter: drop-shadow(0 24px 42px rgba(0, 0, 0, 0.34));
}

.author-card__content {
  width: 100%;
  max-width: 980px;
  min-width: 0;
  position: relative;
  z-index: 1;
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: #11151d;
}

.author-card__content .section-title {
  margin-bottom: 22px;
  font-size: clamp(2rem, 3.4vw, 2.9rem);
}

.author-card__content .section-text {
  font-size: 1.02rem;
  line-height: 1.72;
}

/* =========================================================
   VÍDEOS DE DEPOIMENTOS
   ========================================================= */
.video-testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 28px;
}

.video-card {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 22px;
  border-radius: 22px;
  background: #10141c;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.video-card__title {
  margin-bottom: 16px;
  color: #ffffff;
  font-size: clamp(1.05rem, 1.7vw, 1.22rem);
  line-height: 1.45;
  font-weight: 800;
}

/* =========================================================
   GRID DE BÔNUS
   ========================================================= */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin: 26px 0 34px;
}

.bonus-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border-radius: 20px;
  background: #11151d;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.bonus-card__icon {
  flex: 0 0 54px;
}

.bonus-card__icon img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.bonus-card__content h3 {
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 1.06rem;
  font-weight: 700;
}

.bonus-card__content p {
  margin-bottom: 0;
  color: #d3d9e4;
  text-align: center;
}

/* =========================================================
   RESUMO DA OFERTA
   ========================================================= */
.offer-title {
  margin-top: 10px;
}

.offer-summary {
  margin-top: 24px;
  padding: 26px;
  border-radius: 24px;
  background: #11151d;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.offer-pricing {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.offer-pricing__old,
.offer-pricing__current,
.offer-pricing__daily {
  margin-bottom: 10px;
}

.offer-pricing__current {
  color: #ffffff;
  font-size: 1.55rem;
  font-weight: 800;
}

/* =========================================================
   BLOCO FINAL DE DECISÃO / OFERTA
   ========================================================= */
.decision-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 420px);
  gap: 30px;
  align-items: start;
}

.decision-copy {
  min-width: 0;
}

.offer-box {
  position: sticky;
  top: 20px;
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, #161c26 0%, #10141b 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.offer-box__badge {
  margin-bottom: 14px;
  padding: 7px 12px;
  background: rgba(255, 213, 74, 0.14);
  color: #ffd54a;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.offer-box__title {
  margin-bottom: 16px;
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 800;
}

.offer-box__old,
.offer-box__installments,
.offer-box__cash {
  margin-bottom: 10px;
  color: #d6dde8;
}

.offer-box__big-price {
  margin-bottom: 10px;
  color: #ffd54a;
  font-size: 2.35rem;
  line-height: 1;
  font-weight: 900;
}

.offer-box .btn {
  margin-top: 18px;
}

.offer-box__safe {
  margin-top: 22px;
}

.offer-box__safe img {
  max-width: 180px;
  margin: 0 auto;
}

.offer-box__whatsapp {
  display: inline-flex;
  margin-top: 18px;
}

.offer-box__whatsapp img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

/* =========================================================
   CARDS DE ESCOLHA
   ========================================================= */
.choice-card {
  margin-bottom: 18px;
  padding: 20px 22px;
  border-radius: 20px;
}

.choice-card .section-subheading {
  margin-bottom: 10px;
}

.choice-card .section-text {
  margin-bottom: 0;
}

.choice-card--danger {
  background: linear-gradient(
    180deg,
    rgba(255, 60, 60, 0.18) 0%,
    rgba(255, 60, 60, 0.10) 35%,
    rgba(255, 60, 60, 0.04) 65%,
    rgba(255, 60, 60, 0) 100%
  );
  backdrop-filter: blur(6px);
}

.choice-card--success {
  background: linear-gradient(
    180deg,
    rgba(70, 201, 120, 0.18) 0%,
    rgba(70, 201, 120, 0.10) 35%,
    rgba(70, 201, 120, 0.04) 65%,
    rgba(70, 201, 120, 0) 100%
  );
  backdrop-filter: blur(6px);
}

/* =========================================================
   GARANTIA
   ========================================================= */
.guarantee-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: center;
  padding: 28px;
  border-radius: 24px;
  background: #11151d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.guarantee-card__image img {
  width: 100%;
  max-width: 220px;
  margin: 0 auto;
}

.guarantee-card__content {
  min-width: 0;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  padding: 34px 0 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #0a0d12;
}

.footer__text,
.footer__disclaimer {
  margin-bottom: 8px;
  color: #aeb7c6;
  text-align: center;
  font-size: 0.94rem;
}

.footer__disclaimer {
  margin-bottom: 0;
}

/* =========================================================
   RESPONSIVIDADE
   ========================================================= */
@media (max-width: 991px) {
  .section {
    padding: 60px 0;
  }

  .section--hero {
    padding: 72px 0 60px;
  }

  .decision-layout,
  .guarantee-card {
    grid-template-columns: 1fr;
  }

  .author-card {
    gap: 24px;
  }

  .author-card__image {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .author-card__image img {
    max-width: 820px;
  }

  .author-card__content {
    padding: 30px;
  }

  .offer-box {
    position: static;
    max-width: 720px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .container {
    padding-inline: 16px;
  }

  .section {
    padding: 54px 0;
  }

  .section--hero {
    padding: 64px 0 54px;
  }

  .hero__title {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }

  .section-title {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

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

  .bonus-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .offer-summary,
  .offer-box,
  .video-card,
  .guarantee-card {
    padding: 20px;
    border-radius: 18px;
  }

  .author-card__image img {
    max-width: 100%;
    border-radius: 18px;
  }

  .author-card__content {
    padding: 22px;
    border-radius: 18px;
  }

  .offer-box__big-price {
    font-size: 2rem;
  }

  .btn,
  .btn--large {
    width: 100%;
  }

  .benefit-list,
  .offer-list {
    padding-left: 20px;
  }

  .choice-card {
    padding: 18px 16px;
    border-radius: 18px;
  }

  .eyebrow {
    padding: 8px 12px;
    font-size: 0.8rem;
    letter-spacing: 0.03em;
  }
}

@media (max-width: 480px) {
  .container {
    padding-inline: 14px;
  }

  .section {
    padding: 46px 0;
  }

  .section--hero {
    padding: 56px 0 46px;
  }

  .eyebrow {
    font-size: 0.76rem;
    padding: 8px 10px;
    line-height: 1.3;
  }

  .hero__subtitle,
  .section-text,
  .bonus-card__content p,
  .offer-box__old,
  .offer-box__installments,
  .offer-box__cash,
  .footer__text,
  .footer__disclaimer {
    font-size: 0.95rem;
  }

  .offer-box__title {
    font-size: 1.35rem;
  }

  .offer-box__big-price {
    font-size: 1.8rem;
  }

  .author-card__image img {
    border-radius: 16px;
  }

  .video-frame,
  .proof-image,
  .offer-summary,
  .offer-box,
  .video-card,
  .guarantee-card,
  .author-card__content {
    border-radius: 16px;
  }
}

@media (max-width: 360px) {
  .container {
    padding-inline: 12px;
  }

  .section-title {
    font-size: 1.45rem;
  }

  .hero__title {
    font-size: 1.7rem;
  }

  .btn {
    min-height: 50px;
    padding: 12px 18px;
    font-size: 0.95rem;
  }

  .offer-box__big-price {
    font-size: 1.65rem;
  }

  .eyebrow {
    font-size: 0.72rem;
    padding: 7px 9px;
  }
}
