/* =========================================================================
   Dobre Seus Lucros na América — estilos da landing page principal
   Paleta e tipografia extraídas da página original (Elementor/Urbanist).
   ========================================================================= */

/* ---------------------- Tipografia (auto-hospedada) ---------------------- */
/* Urbanist variável — mesma família da página original, sem depender do
   Google Fonts em runtime. */
@font-face {
  font-family: "Urbanist";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/urbanist-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Urbanist";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/urbanist-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ------------------------------ Tokens ---------------------------------- */
:root {
  /* cores */
  --preto: #000000;
  --preto-2: #0d0d0d;
  --preto-3: #1a1a1a;
  --cinza-linha: #2e2e2e;
  --texto: #ffffff;
  --texto-suave: #c9c9c9;
  --texto-fraco: #8f8f8f;
  --ouro: #f0a82f;
  --ouro-claro: #ffc96d;
  --ouro-escuro: #daa243;
  --verde: #00a208;
  --vermelho: #c90000;

  /* layout */
  --container: 1140px;
  --container-estreito: 900px;
  --raio: 12px;
  --raio-g: 20px;

  /* tipografia */
  --fonte: "Urbanist", "Segoe UI", system-ui, -apple-system, sans-serif;
}

/* ------------------------------ Reset ----------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--preto);
  color: var(--texto);
  font-family: var(--fonte);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* height:auto evita que os atributos width/height do HTML deformem a imagem */
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, p, ul, figure { margin: 0; }
ul { padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }

/* ---------------------------- Utilitários -------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

.ouro { color: var(--ouro); }
.branco { color: #fff; }
.centro { text-align: center; }

.secao { position: relative; overflow: hidden; }

/* camada de imagem de fundo das seções (equivalente ao parallax do original) */
.secao__bg {
  position: absolute;
  inset: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
}
.secao > .container,
.secao > .container-full { position: relative; z-index: 1; }

/* títulos */
.titulo-hero {
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.titulo-secao {
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 600;
  line-height: 1.2;
}
.titulo-card {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 600;
  line-height: 1.2;
}
.texto {
  color: var(--texto-suave);
  font-size: 17px;
  line-height: 1.6;
}
.texto + .texto { margin-top: 14px; }
.texto strong { color: #fff; font-weight: 700; }

/* listas com ícone */
.lista { display: grid; gap: 10px; }
.lista li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--texto-suave);
  font-size: 17px;
}
.lista li strong { color: #fff; font-weight: 700; }
.lista .ico {
  width: 22px;
  height: 22px;
  flex: none;
  margin-top: 3px;
  fill: currentColor;
}
.lista--check .ico { color: var(--ouro); }
.lista--x .ico { color: var(--vermelho); }
.lista--info .ico { color: var(--ouro); }

/* ------------------------------ Botões ----------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  font-weight: 700;
  line-height: 1.25;
  border: 0;
  border-radius: 8px;
  padding: 16px 28px;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.btn--ouro {
  background: linear-gradient(180deg, var(--ouro-claro) 0%, var(--ouro) 100%);
  color: #1a1a1a;
  box-shadow: 0 0 26px rgba(240, 168, 47, .35);
}
.btn--ouro:hover { transform: translateY(-2px); box-shadow: 0 0 38px rgba(240, 168, 47, .55); }
.btn--contorno {
  background: transparent;
  color: var(--ouro);
  border: 1.5px solid var(--ouro);
}
.btn--contorno:hover { background: rgba(240, 168, 47, .12); }
.btn--bloco { display: flex; width: 100%; }
.btn--g { font-size: clamp(15px, 1.6vw, 20px); padding: 18px 32px; }

/* ------------------------------ Topbar ----------------------------------- */
.topbar {
  background: linear-gradient(90deg, var(--ouro) 0%, var(--ouro-claro) 50%, var(--ouro) 100%);
  color: #000;
  text-align: center;
  font-size: clamp(12px, 1.4vw, 15px);
  font-weight: 700;
  letter-spacing: .02em;
  padding: 10px 16px;
  position: relative;
  z-index: 5;
}

/* ------------------------------- Hero ------------------------------------ */
.hero { min-height: 820px; display: flex; align-items: center; padding: 50px 0; }
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  min-height: 720px;
}
.hero .container { max-width: 1320px; }
.hero__grid > :first-child { max-width: 620px; }
.hero__logo { width: 300px; max-width: 70%; margin-bottom: 22px; }
.hero__sub { margin-top: 18px; max-width: 34em; }
.hero__infos { margin-top: 22px; gap: 6px; }
.hero__infos li { font-size: 15px; font-weight: 600; color: #fff; }

.hero__oferta {
  margin-top: 26px;
  max-width: 460px;
  border: 1px solid rgba(240, 168, 47, .55);
  border-radius: var(--raio);
  background: rgba(0, 0, 0, .55);
  backdrop-filter: blur(2px);
  padding: 18px;
  box-shadow: 0 0 40px rgba(0, 0, 0, .6);
}
.hero__oferta-topo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.badge-lote {
  display: inline-block;
  background: #fff;
  color: #1a1a1a;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  border-radius: 999px;
  padding: 8px 16px;
}
.preco-de { color: var(--texto-fraco); font-size: 20px; font-weight: 400; }
.preco-de s { text-decoration-thickness: 2px; }
.preco-agora {
  color: var(--ouro);
  font-size: clamp(34px, 5vw, 48px);
  font-weight: 900;
  line-height: 1;
}
.hero__cta { margin-top: 16px; }
.hero__garantia-txt {
  margin-top: 12px;
  text-align: center;
  font-size: 14px;
  color: var(--texto-suave);
}

/* a coluna da direita fica alinhada ao rodapé do hero, sobre a arte de fundo */
.hero__lado { display: flex; flex-direction: column; justify-content: flex-end; align-self: stretch; }
.hero__nao-e { width: 100%; max-width: 640px; margin-left: auto; }
.hero__nao-e h2 { font-size: clamp(22px, 2.4vw, 32px); font-weight: 700; margin-bottom: 14px; }
.hero__mobile-img { display: none; }

/* --------------------------- Carrossel base ------------------------------ */
.carrossel { position: relative; }
.carrossel__trilho {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px;
  scrollbar-width: none;
}
.carrossel__trilho::-webkit-scrollbar { display: none; }
.carrossel__trilho > * { scroll-snap-align: center; flex: none; }
.carrossel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .6);
  border: 1px solid rgba(255, 255, 255, .25);
  color: #fff;
  display: grid;
  place-items: center;
  z-index: 3;
}
.carrossel__nav:hover { background: rgba(240, 168, 47, .9); color: #000; border-color: transparent; }
.carrossel__nav--ant { left: -6px; }
.carrossel__nav--prox { right: -6px; }
.carrossel__nav svg { width: 18px; height: 18px; fill: currentColor; }

/* ---------------------------- Clientes ----------------------------------- */
.clientes { padding: 70px 0 80px; }
.clientes .titulo-secao { margin-bottom: 34px; }
.cliente-card {
  width: 408px;
  max-width: 84vw;
  border-radius: var(--raio);
  overflow: hidden;
  background: #000;
  border: 1px solid var(--cinza-linha);
}
.cliente-card__logo {
  width: 100%;
  aspect-ratio: 408 / 243;
  object-fit: contain;
  background: #000;
}
.cliente-card__foto {
  width: 100%;
  height: 260px;
  background-size: cover;
  background-position: center top;
}
.clientes__cta { margin-top: 34px; display: flex; justify-content: center; }

/* --------------------------- Vídeos / provas ----------------------------- */
.provas { padding: 20px 0 80px; }
.provas .titulo-secao { margin-bottom: 34px; }
.video-card {
  width: 420px;
  max-width: 86vw;
  border-radius: var(--raio);
  overflow: hidden;
  background: #000;
  border: 1px solid var(--cinza-linha);
}
.video-card video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #000;
  display: block;
}

/* --------------------- Seções com imagem de fundo ------------------------ */
.secao-split { min-height: 895px; display: flex; align-items: center; padding: 64px 20px; }
.secao-split__conteudo { max-width: 520px; }
.secao-split--dir .secao-split__conteudo { margin-left: auto; }
.secao-split .titulo-secao { margin-bottom: 18px; }
.secao-split .btn { margin-top: 26px; }
.destaque {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  margin-top: 14px;
}

/* ---------------------------- Entregas (3 cards) -------------------------- */
.entregas { padding: 80px 0; }
.entregas .titulo-secao { margin-bottom: 36px; text-align: center; }
.entregas__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.entrega-card {
  background: url("../img/bg/card-beneficio.webp") center/cover no-repeat, var(--preto-3);
  border: 1px solid var(--cinza-linha);
  border-radius: var(--raio);
  padding: 32px 40px;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
}
.entrega-card img { width: 64px; margin-bottom: auto; }
.entrega-card h3 { font-size: 26px; font-weight: 600; line-height: 1.2; }
.entrega-card p { color: var(--texto-suave); font-size: 16px; }

/* --------------------------- Avaliações Google ---------------------------- */
.reviews { padding: 20px 0 80px; }
.reviews .titulo-secao { margin-bottom: 30px; text-align: center; }
.review-card {
  width: 360px;
  max-width: 86vw;
  background: var(--preto-2);
  border: 1px solid var(--cinza-linha);
  border-radius: var(--raio);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.review-card__topo { display: flex; align-items: center; gap: 12px; }
.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ouro), var(--ouro-escuro));
  color: #1a1a1a;
  font-weight: 800;
  display: grid;
  place-items: center;
  flex: none;
}
.review-card__nome { font-weight: 700; font-size: 15px; }
.review-card__fonte { font-size: 12px; color: var(--texto-fraco); }
.review-card__estrelas { color: #fbbc04; letter-spacing: 2px; font-size: 15px; }
.review-card__texto {
  color: var(--texto-suave);
  font-size: 14.5px;
  line-height: 1.6;
  max-height: 12.8em;
  overflow: hidden;
  position: relative;
}
.review-card__texto.aberto { max-height: none; }
.review-card__mais {
  background: none;
  border: 0;
  color: var(--ouro);
  font-size: 13px;
  font-weight: 700;
  padding: 0;
  align-self: flex-start;
}

/* ------------------------------ Público ---------------------------------- */
.publico { padding: 70px 0; }
.publico .titulo-secao { margin-bottom: 28px; text-align: center; }
.publico .lista { max-width: 680px; margin-inline: auto; gap: 14px; }

/* ------------------------------ Ofertas ---------------------------------- */
.ofertas { padding: 60px 0 40px; }
.ofertas__titulo {
  text-align: center;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  margin-bottom: 26px;
}
.ofertas__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 980px;
  margin-inline: auto;
}
.ticket {
  border: 1px solid var(--cinza-linha);
  border-radius: var(--raio-g);
  padding: 54px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background-size: cover;
  background-position: center;
}
.ticket--silver { background-image: url("../img/bg/card-silver.webp"); }
.ticket--vip { background-image: url("../img/bg/card-vip.webp"); border-color: rgba(240, 168, 47, .5); }
.ticket h3 { text-align: center; font-size: clamp(24px, 2.6vw, 32px); font-weight: 600; }
.ticket--vip h3 { color: var(--ouro); }
.ticket__itens { display: grid; gap: 10px; }
.ticket__itens li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 15.5px;
  color: var(--texto-suave);
}
.ticket__itens li strong { color: #fff; }
.ticket__itens .ico { width: 20px; height: 20px; margin-top: 3px; fill: currentColor; color: var(--ouro); }
.ticket__itens li.nao { color: var(--texto-fraco); text-decoration: line-through; }
.ticket__itens li.nao .ico { color: #fff; text-decoration: none; }
.ticket__preco {
  border-top: 1px solid var(--cinza-linha);
  padding-top: 18px;
  text-align: center;
}
.ticket__de { color: var(--texto-fraco); font-size: 22px; }
.ticket__por {
  font-size: clamp(34px, 4.4vw, 48px);
  font-weight: 700;
  line-height: 1.1;
}
.ticket__por span { font-size: 22px; font-weight: 400; color: var(--texto-suave); }

/* ------------------------------ Garantia --------------------------------- */
.garantia { padding: 40px 0 70px; }
.garantia__box {
  background: var(--preto-3);
  border-radius: var(--raio-g);
  padding: 46px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 34px;
  align-items: center;
}
.garantia__box img { width: 100%; }
.garantia__box h2 { font-size: clamp(20px, 2.2vw, 26px); font-weight: 700; line-height: 1.35; }
.garantia__box p { margin-top: 14px; color: var(--ouro); font-size: 17px; }

/* ------------------------------- Mentor ---------------------------------- */
.mentor { min-height: 752px; display: flex; align-items: center; padding: 64px 20px; }
.mentor__conteudo { max-width: 520px; margin-left: auto; }
.mentor__conteudo .titulo-secao { margin-bottom: 18px; }

/* ------------------------------- Rodapé ---------------------------------- */
.rodape {
  border-top: 1px solid var(--cinza-linha);
  padding: 40px 20px;
  text-align: center;
  color: var(--texto-suave);
  font-size: 15px;
}
.rodape__cta { margin-bottom: 26px; }

/* ------------------------------- Modais ---------------------------------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, .8);
  overflow-y: auto;
}
.modal.aberto { display: flex; }
.modal__caixa {
  position: relative;
  width: 100%;
  max-width: 520px;
  background: var(--preto-3);
  border: 1px solid rgba(240, 168, 47, .35);
  border-radius: var(--raio-g);
  padding: 36px;
  margin: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .8);
}
.modal__caixa--larga { max-width: 900px; }
.modal__fechar {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  font-size: 20px;
  line-height: 1;
}
.modal__fechar:hover { background: var(--ouro); color: #000; }
.modal h2 { font-size: 26px; font-weight: 700; margin-bottom: 8px; }
.modal p.sub { color: var(--texto-suave); font-size: 15px; margin-bottom: 22px; }

.form { display: grid; gap: 12px; }
.form input,
.form select {
  width: 100%;
  background: #000;
  border: 1px solid var(--cinza-linha);
  border-radius: 8px;
  color: #fff;
  font: inherit;
  font-size: 15px;
  padding: 14px 16px;
}
.form input::placeholder { color: var(--texto-fraco); }
.form input:focus,
.form select:focus { outline: 2px solid var(--ouro); outline-offset: 1px; }
.form .btn { margin-top: 6px; }
.form__erro {
  color: var(--vermelho);
  font-size: 13.5px;
  font-weight: 600;
  margin: -4px 0 0;
}
.form__erro[hidden] { display: none; }

.bio-modal p { color: var(--texto-suave); font-size: 16px; }
.bio-modal p + p { margin-top: 14px; }

/* ======================= Variação v2 (formato curto) ====================== */
/* Só o que muda em relação à página principal: o topo tem menos peso, o bloco
   de prova ganha a linha de avaliações reduzida e o preço vira uma seção só. */

.hero--curto { min-height: 760px; }
.hero--curto .hero__grid { min-height: 660px; }
.hero__ancora { margin-top: 20px; font-size: 15px; }
.hero__ancora a {
  color: var(--ouro);
  border-bottom: 1px solid rgba(240, 168, 47, .5);
  padding-bottom: 2px;
}
.hero__ancora a:hover { border-bottom-color: var(--ouro); }

.provas--curto { padding: 70px 0 80px; }
.provas__sub { margin: -18px auto 30px; max-width: 46em; text-align: center; }

/* avaliações menores, como complemento dos vídeos */
.reviews--compacto { margin-top: 44px; padding: 0; }
.reviews--compacto .review-card { width: 300px; padding: 18px; }
.reviews--compacto .review-card__texto { max-height: 9.6em; font-size: 14px; }

.ofertas--curto { padding: 20px 0 40px; }
.ofertas--curto .titulo-secao { margin-bottom: 6px; }
.ofertas__lote {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--texto-suave);
  margin-bottom: 30px;
}

/* ============================ Responsivo ================================= */
@media (max-width: 1024px) {
  .entregas__grid { grid-template-columns: 1fr; }
  .ticket { padding: 36px; }
  .garantia__box { grid-template-columns: 180px 1fr; padding: 34px; }
}

@media (max-width: 767px) {
  .hero {
    min-height: 1000px;
    padding: 24px 0 440px;
    align-items: flex-start;
    text-align: center;
  }
  .hero__grid { grid-template-columns: 1fr; gap: 26px; }
  .hero__logo { margin-inline: auto; width: 230px; }
  .hero__sub { margin-inline: auto; }
  .hero__infos li { justify-content: center; display: flex; gap: 8px; }
  .hero__infos { justify-items: center; }
  .hero__oferta { margin-inline: auto; }
  .hero__oferta-topo { justify-content: center; }
  .badge-lote { width: 100%; text-align: center; }
  .hero__lado { display: none; }
  .hero__nao-e { display: none; }

  /* bloco "não é para" vira seção própria no mobile */
  .nao-e-mobile { display: block; padding: 40px 0 10px; text-align: center; }
  .nao-e-mobile h2 { font-size: 26px; font-weight: 700; margin-bottom: 16px; }
  .nao-e-mobile .lista li { text-align: left; }

  .secao-split,
  .mentor {
    min-height: 0;
    padding: 260px 20px 40px;
  }
  .secao-split__conteudo,
  .mentor__conteudo { max-width: none; margin: 0; }
  .secao-split__conteudo .btn,
  .mentor__conteudo .btn { width: 100%; }

  .ofertas__grid { grid-template-columns: 1fr; }
  .ticket { padding: 32px; }
  .garantia__box { grid-template-columns: 1fr; text-align: center; }
  .garantia__box img { width: 180px; margin-inline: auto; }

  .carrossel__nav--ant { left: 0; }
  .carrossel__nav--prox { right: 0; }

  .modal__caixa { padding: 28px 22px; }
  /* v2: no mobile a âncora cairia em cima da arte do hero */
  .hero--curto { min-height: 1000px; }
  .hero__ancora { display: none; }
  .provas__sub { margin-top: -10px; }
}

@media (min-width: 768px) {
  .nao-e-mobile { display: none; }
}
