/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:   #000000;
  --dark:    #0d0d0d;
  --dark2:   #111111;
  --dark3:   #1a1a1a;
  --gold:    #F4C25C;
  --gold2:   #e0a828;
  --white:   #ffffff;
  --gray:    #999999;
  --gray2:   #cccccc;
  --red-err: #e74c3c;
  --radius:  8px;
  --shadow:  0 4px 32px rgba(0,0,0,0.6);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Arial', sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 {
  font-family: 'Arial Black', 'Arial', sans-serif;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.gold { color: var(--gold); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius);
  font-family: 'Arial Black', Arial, sans-serif;
  font-weight: 900;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn--primary {
  background: var(--gold);
  color: var(--black);
}
.btn--primary:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244,194,92,0.4);
}

.btn--full { width: 100%; justify-content: center; }

.btn--large {
  font-size: 1.15rem;
  padding: 20px 40px;
}

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 90px 0; }
.section--black { background: var(--black); }
.section--dark  { background: var(--dark); }

.section__tag {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section__title {
  font-family: 'Arial Black', Arial, sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 18px;
  color: var(--white);
}

.section__sub {
  font-size: 1.1rem;
  color: var(--gray2);
  max-width: 640px;
  margin-bottom: 40px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
  padding: 80px 0 60px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://www.genspark.ai/api/files/s/GxjRoBBS');
  background-size: cover;
  background-position: left center;
  opacity: 1;
  z-index: 0;
}

.hero__bg-overlay {
  display: none;
}



.hero__inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 60px;
  align-items: center;
  width: 100%;
}

/* Left */
.logo-wrap { margin-bottom: 28px; }
.logo { height: 64px; width: auto; }

.hero__tag {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero__headline {
  font-family: 'Arial Black', Arial, sans-serif;
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero__sub {
  font-size: 1.15rem;
  color: var(--gray2);
  margin-bottom: 32px;
  max-width: 520px;
}

.hero__bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero__bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--white);
}
.hero__bullets li i {
  color: var(--gold);
  font-size: 0.9rem;
  background: rgba(244,194,92,0.12);
  border: 1px solid rgba(244,194,92,0.3);
  width: 26px; height: 26px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* Right – Form */
.hero__right { position: relative; z-index: 3; }

.form-box {
  background: rgba(13,13,13,0.92);
  border: 1px solid rgba(244,194,92,0.2);
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.7);
  backdrop-filter: blur(10px);
}

.form-box__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.form-box__title {
  font-family: 'Arial Black', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  margin-bottom: 8px;
  line-height: 1.2;
}
.form-box__sub {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gray2);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}
.form-group input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 1rem;
  font-family: Arial, sans-serif;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus {
  border-color: var(--gold);
  background: rgba(244,194,92,0.05);
}
.form-group input.error {
  border-color: var(--red-err);
}
.form-group input::placeholder { color: #555; }

.form-box__disclaimer {
  text-align: center;
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.form-success {
  text-align: center;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.form-success i {
  font-size: 3rem;
  color: var(--gold);
}
.form-success strong {
  font-size: 1.2rem;
  color: var(--white);
}
.form-success p { color: var(--gray2); }
.hidden { display: none; }

/* ============================================
   VIDEO SECTION
   ============================================ */
.video-section { text-align: center; }
.video-section .section__sub { margin: 0 auto 40px; }

.video-wrapper {
  display: flex;
  justify-content: center;
}

.video-container {
  width: 360px;
  aspect-ratio: 9 / 16;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(244,194,92,0.18), 0 4px 24px rgba(0,0,0,0.7);
  border: 2px solid rgba(244,194,92,0.25);
  background: #000;
}
.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 480px) {
  .video-container {
    width: 100%;
    max-width: 340px;
  }
}

/* ============================================
   PROBLEMA
   ============================================ */
.problema { text-align: center; }
.problema .section__title { margin: 0 auto 40px; max-width: 700px; }

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

.problema__card {
  background: var(--dark3);
  border-radius: 12px;
  padding: 36px 28px;
  border: 1.5px solid transparent;
  transition: transform 0.2s;
}
.problema__card:hover { transform: translateY(-4px); }
.problema__card--red { border-color: rgba(231,76,60,0.25); }
.problema__card--gold { border-color: rgba(244,194,92,0.35); }

.problema__icon {
  font-size: 2rem;
  color: #e74c3c;
  margin-bottom: 16px;
}
.problema__card--gold .problema__icon { color: var(--gold); }

.problema__card h3 {
  font-family: 'Arial Black', Arial, sans-serif;
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.problema__card p { font-size: 0.95rem; color: var(--gray2); }

/* ============================================
   SOLUÇÃO
   ============================================ */
.solucao__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.solucao__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.solucao__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
}
.solucao__img-box { display: flex; justify-content: center; }

.solucao__foto {
  width: 100%;
  max-width: 440px;
  height: 520px;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  border: 2px solid rgba(244,194,92,0.25);
  box-shadow: 0 12px 48px rgba(0,0,0,0.6);
}

/* ============================================
   BENEFÍCIOS
   ============================================ */
.beneficios { text-align: center; }
.beneficios .section__title { max-width: 600px; margin: 0 auto 48px; }

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

.beneficio-card {
  background: var(--dark3);
  border-radius: 12px;
  padding: 36px 24px;
  border: 1.5px solid rgba(244,194,92,0.1);
  transition: all 0.25s;
  text-align: left;
}
.beneficio-card:hover {
  border-color: rgba(244,194,92,0.4);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(244,194,92,0.1);
}
.beneficio-card__icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 18px;
}
.beneficio-card h3 {
  font-family: 'Arial Black', Arial, sans-serif;
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--white);
}
.beneficio-card p { font-size: 0.9rem; color: var(--gray2); }

/* ============================================
   AVISO IMPORTANTE
   ============================================ */
.aviso { text-align: center; }
.aviso__box {
  display: inline-block;
  max-width: 680px;
  background: rgba(231,76,60,0.08);
  border: 2px solid rgba(231,76,60,0.5);
  border-radius: 16px;
  padding: 48px 40px;
}
.aviso__icon {
  font-size: 3rem;
  color: #e74c3c;
  margin-bottom: 16px;
}
.aviso__title {
  font-family: 'Arial Black', Arial, sans-serif;
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--white);
}
.aviso__sub {
  color: var(--gray2);
  margin-bottom: 24px;
}
.aviso__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
  margin-bottom: 24px;
}
.aviso__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: var(--white);
}
.aviso__list li i {
  color: #e74c3c;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.aviso__msg {
  font-size: 1rem;
  color: var(--gray2);
}

/* ============================================
   PROVA SOCIAL
   ============================================ */
.prova { text-align: center; }
.prova .section__title { margin: 0 auto 48px; max-width: 600px; }

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

.depoimento {
  background: var(--dark3);
  border-radius: 12px;
  padding: 36px 28px;
  border: 1.5px solid rgba(244,194,92,0.12);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.depoimento__img-wrap { display: flex; }

.depoimento__foto {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 2.5px solid var(--gold);
  box-shadow: 0 0 0 4px rgba(244,194,92,0.12);
}

.depoimento__stars { color: var(--gold); font-size: 0.85rem; display: flex; gap: 3px; }

.depoimento__texto {
  font-size: 0.95rem;
  color: var(--gray2);
  line-height: 1.6;
  flex: 1;
  font-style: italic;
}
.depoimento__nome {
  color: var(--white);
  font-size: 1rem;
}
.depoimento__cargo {
  font-size: 0.8rem;
  color: var(--gold);
  display: block;
}

/* ============================================
   OBJEÇÕES
   ============================================ */
.objecoes .section__title { max-width: 520px; }

.objecoes__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.objecao-item {
  background: var(--dark3);
  border-radius: 12px;
  padding: 28px 28px;
  border-left: 3px solid var(--gold);
}
.objecao-item__q {
  font-family: 'Arial Black', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.objecao-item__a {
  font-size: 0.92rem;
  color: var(--gray2);
  line-height: 1.6;
  padding-left: 28px;
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final { background: var(--black); }
.cta-final__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cta-final__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}
.cta-final__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

.cta-final__img-box { display: flex; justify-content: center; }

.cta-final__foto {
  width: 100%;
  max-width: 440px;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  border-radius: 20px;
  border: 2px solid rgba(244,194,92,0.25);
  box-shadow: 0 12px 48px rgba(0,0,0,0.6);
}

/* ============================================
   FECHAMENTO
   ============================================ */
.fechamento { background: var(--dark); }
.fechamento__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.fechamento__img-box { display: flex; justify-content: center; }
.fechamento__text .section__title { font-size: clamp(1.8rem, 3vw, 2.6rem); }

.fechamento__foto {
  width: 100%;
  max-width: 440px;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  border-radius: 20px;
  border: 2px solid rgba(244,194,92,0.25);
  box-shadow: 0 12px 48px rgba(0,0,0,0.6);
}

/* ============================================
   PLACEHOLDERS (imagens reservadas)
   ============================================ */
.img-placeholder {
  width: 100%;
  max-width: 440px;
  min-height: 360px;
  background: var(--dark3);
  border: 2px dashed rgba(244,194,92,0.3);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(244,194,92,0.4);
  font-size: 0.9rem;
  font-weight: 700;
}
.img-placeholder i { font-size: 3rem; }

.img-placeholder--round {
  width: 72px;
  min-height: 72px;
  max-width: 72px;
  border-radius: 50%;
  font-size: 0.7rem;
}
.img-placeholder--round i { font-size: 1.8rem; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #050505;
  border-top: 1px solid rgba(244,194,92,0.1);
  padding: 40px 0;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.footer__logo { height: 48px; width: auto; filter: brightness(0.85); }
.footer p { font-size: 0.85rem; color: var(--gray); }
.footer__disclaimer { font-size: 0.75rem; color: #555; }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__left  { animation: fadeUp 0.7s ease both; }
.hero__right { animation: fadeUp 0.7s 0.2s ease both; }

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__product-img { display: none; }
  .hero__sub { max-width: 100%; }
  .hero__right { max-width: 560px; margin: 0 auto; width: 100%; }

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

  .solucao__inner,
  .cta-final__inner,
  .fechamento__inner,
  .objecoes__grid { grid-template-columns: 1fr; }

  .solucao__img-box,
  .cta-final__img-box,
  .fechamento__img-box { display: none; }
}

@media (max-width: 640px) {
  .section { padding: 60px 0; }

  .problema__grid,
  .beneficios__grid,
  .prova__grid,
  .objecoes__grid { grid-template-columns: 1fr; }

  .form-box { padding: 28px 20px; }
  .hero { padding: 60px 0 40px; }

  .btn--large { font-size: 1rem; padding: 16px 24px; }
  .aviso__box { padding: 32px 20px; }
}
