:root {
  --azul-marinho: #001F5B;
  --laranja: #FF6B00;
  --laranja-hover: #e05f00;
  --azul-claro: #0A84FF;
  --branco: #FFFFFF;
  --cinza-claro: #F5F7FA;
  --grafite: #0D1117;
  --verde-sucesso: #00C853;

  --font-heading: 'Montserrat', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--grafite);
  background: var(--branco);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 16px;
}

h1 { font-size: 44px; color: var(--branco); }
h2 { font-size: 34px; }
h3 { font-size: 20px; margin-bottom: 8px; }

p {
  margin: 0 0 16px;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
}

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

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

.section-light { background: var(--cinza-claro); }
.section-dark { background: var(--grafite); color: var(--branco); }
.section-dark h2, .section-dark h3 { color: var(--branco); }
.section-dark p { color: #C9CDD3; }

.section-subtitle {
  font-size: 18px;
  font-weight: 600;
  color: var(--azul-claro);
  max-width: 700px;
  margin: 0 auto 32px;
  text-align: center;
}
.section-dark .section-subtitle,
.hero .section-subtitle { color: #8fb8ff; }

.section-kicker {
  font-size: 18px;
  color: #C9CDD3;
  margin-top: -8px;
  margin-bottom: 32px;
}

section { padding: 72px 0; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-cta {
  background: var(--laranja);
  color: var(--branco);
}
.btn-cta:hover {
  background: var(--laranja-hover);
  box-shadow: 0 8px 24px rgba(255,107,0,0.4);
  transform: translateY(-2px);
}
.btn-large { padding: 18px 36px; font-size: 17px; min-height: 48px; }
.btn-small { padding: 10px 20px; font-size: 13px; min-height: 40px; }
.btn-full { width: 100%; text-align: center; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--azul-marinho);
  padding: 14px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--branco);
}
.logo span { color: var(--laranja); }
.header-cta { white-space: nowrap; }

/* ===== Hero ===== */
.hero {
  background: linear-gradient(180deg, var(--azul-marinho) 0%, #001033 100%);
  padding: 48px 0 80px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero-subtitle {
  font-size: 19px;
  color: #D7E2F6;
}
.hero-microcopy {
  margin-top: 12px;
  font-size: 13px;
  color: #8fa3c9;
}

.urgency-bar {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  background: rgba(255,107,0,0.12);
  border: 1px solid rgba(255,107,0,0.5);
  padding: 12px 18px;
  border-radius: 10px;
  margin-bottom: 28px;
}
.urgency-label {
  font-weight: 700;
  color: var(--laranja);
  font-size: 14px;
  text-transform: uppercase;
}
.countdown { display: flex; gap: 10px; }
.countdown-unit {
  background: var(--grafite);
  border-radius: 8px;
  padding: 8px 12px;
  text-align: center;
  min-width: 52px;
}
.countdown-unit span {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 20px;
  color: var(--branco);
}
.countdown-unit small {
  font-size: 10px;
  text-transform: uppercase;
  color: #9aa5b8;
}

.photo-frame {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.08);
}
.photo-frame img { width: 100%; display: block; }
.photo-frame--hero { aspect-ratio: 4/5; }
.photo-frame--portrait { aspect-ratio: 4/5; max-width: 420px; }

/* ===== Authority ===== */
.authority-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: center;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 32px;
  color: var(--azul-marinho);
}
.stat-label { font-size: 14px; color: #4a5568; }

/* ===== Carousel ===== */
.carousel-section { padding-bottom: 48px; }
.carousel-track-wrap {
  overflow: hidden;
  width: 100%;
  margin-top: 24px;
}
.carousel-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: scroll-carousel 30s linear infinite;
}
.carousel-track:hover { animation-play-state: paused; }
.carousel-slide {
  width: 260px;
  height: 320px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
@keyframes scroll-carousel {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== Cards grid ===== */
.cards-grid { display: grid; gap: 24px; margin: 40px 0; }
.cards-grid--3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--branco);
  border-radius: 14px;
  padding: 28px 24px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}
.card--pain {
  background: #161B29;
  border-top: 3px solid var(--laranja);
}
.card--pain p { color: #C9CDD3; }
.card--value { border-top: 3px solid var(--azul-claro); text-align: center; }
.card--value p { text-align: center; }
.card--pillar { border-top: 3px solid var(--verde-sucesso); }
.card-icon { font-size: 32px; display: inline-block; margin-bottom: 12px; }

.cta-block { margin-top: 48px; }
.cta-lead { font-size: 20px; font-weight: 700; max-width: 640px; margin: 0 auto 24px; color: var(--branco); text-align: center; }

/* ===== VSL ===== */
.video-wrap { max-width: 800px; margin: 32px auto 0; }
.video-placeholder {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  cursor: pointer;
}
.video-placeholder img { width: 100%; height: 100%; object-fit: cover; }
.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 84px; height: 84px;
  border-radius: 50%;
  background: rgba(255,107,0,0.92);
  color: var(--branco);
  font-size: 28px;
  border: 4px solid rgba(255,255,255,0.8);
  cursor: pointer;
}

/* ===== Lead Form ===== */
.lead-form { background: var(--azul-marinho); }
.form-card {
  background: var(--branco);
  border-radius: 20px;
  padding: 48px;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}
.form-card h2, .form-card p { text-align: center; }
.form-row { margin-bottom: 18px; text-align: left; }
.form-row label { display: block; font-weight: 700; font-size: 14px; margin-bottom: 6px; }
.form-row input, .form-row select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #D7DCE3;
  border-radius: 8px;
  font-size: 16px;
  font-family: var(--font-body);
  background: var(--branco);
}
.form-row input:focus, .form-row select:focus {
  outline: none;
  border-color: var(--azul-claro);
  box-shadow: 0 0 0 3px rgba(10,132,255,0.15);
}
.form-privacy { text-align: center; font-size: 13px; color: #6b7280; margin-top: 14px; }
.form-success { text-align: center; padding: 24px; }
.form-success h3 { color: var(--verde-sucesso); }

/* ===== Journey ===== */
.timeline { max-width: 780px; margin: 0 auto; }
.timeline-phase {
  background: var(--cinza-claro);
  border-radius: 12px;
  margin-bottom: 16px;
  padding: 8px 24px;
}
.timeline-phase summary {
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  padding: 16px 0;
  list-style: none;
}
.timeline-phase summary::-webkit-details-marker { display: none; }
.timeline-phase summary small { font-weight: 500; color: #6b7280; font-size: 13px; display: block; }
.phase-icon { font-size: 22px; margin-right: 8px; }
.timeline-phase ul { padding-left: 20px; padding-bottom: 16px; }
.timeline-phase li { margin-bottom: 8px; }

/* ===== Benefits ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 32px;
}
.benefits-col-title {
  font-size: 22px;
  padding-bottom: 12px;
  border-bottom: 3px solid;
}
.benefits-col-title--green { border-color: var(--verde-sucesso); color: var(--verde-sucesso); }
.benefits-col-title--blue { border-color: var(--azul-claro); color: var(--azul-claro); }
.benefit-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 20px;
}
.benefit-item .card-icon { font-size: 22px; margin-bottom: 0; }
.benefit-item p { margin-bottom: 0; font-size: 14px; color: #4a5568; }

/* ===== Testimonials ===== */
.testimonial-card {
  background: #161B29;
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
}
.testimonial-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 12px;
  border: 2px solid var(--laranja);
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.stars { margin-bottom: 12px; }
.testimonial-text { font-style: italic; color: #C9CDD3; font-size: 15px; }
.testimonial-author { font-weight: 700; color: var(--branco); font-size: 14px; text-align: center; }

/* ===== Guarantee ===== */
.guarantee-badge { font-size: 56px; margin-bottom: 8px; }
.guarantee-text { max-width: 640px; margin: 0 auto 16px; font-size: 17px; text-align: center; }

/* ===== Final CTA ===== */
.final-cta { text-align: center; padding-bottom: 24px; }
.urgency-bar--final { display: inline-flex; margin-bottom: 32px; }

/* ===== Footer ===== */
.site-footer { background: var(--grafite); color: #9aa5b8; padding: 40px 0; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
.logo--footer { color: var(--branco); }
.footer-links a, .footer-social a {
  color: #9aa5b8;
  text-decoration: none;
  margin: 0 10px;
  font-size: 13px;
}
.footer-links a:hover, .footer-social a:hover { color: var(--branco); }
.footer-copy { font-size: 12px; margin-top: 8px; text-align: center; }

/* ===== Sticky mobile CTA ===== */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--laranja);
  color: var(--branco);
  text-align: center;
  padding: 16px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  z-index: 200;
  box-shadow: 0 -6px 20px rgba(0,0,0,0.2);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  .hero-inner, .authority-inner, .benefits-grid { grid-template-columns: 1fr; }
  .cards-grid--3 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .form-card { padding: 32px 20px; }
  .sticky-mobile-cta { display: block; }
  body { padding-bottom: 64px; }
  .hero-media { order: -1; }
  .header-inner { flex-direction: column; gap: 10px; align-items: stretch; text-align: center; }
  .logo { font-size: 16px; }
  .header-cta { width: 100%; text-align: center; }
}
