/* ================================================================
   VARIÁVEIS — paleta exata do CLAUDE.md
================================================================ */
:root {
  --laranja:        #FF6B00;
  --laranja-2:      #FF8C38;
  --grad:           linear-gradient(135deg, #FF6B00, #FF8C38);
  --preto:          #0A0A0A;
  --cinza-esc:      #111111;
  --cinza-med:      #1A1A1A;
  --cinza-card:     #1E1E1E;
  --cinza-borda:    #2A2A2A;
  --branco:         #FFFFFF;
  --cinza-claro:    #F5F5F5;
  --cinza-claro-2:  #EFEFEF;
  --txt-p:          #FFFFFF;
  --txt-esc:        #0A0A0A;
  --txt-sec:        #A0A0A0;
  --txt-muted:      #666666;
  --borda-clara:    #E0E0E0;
  --r:              12px;
  --pad:            120px;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--preto);
  color: var(--txt-p);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img    { display: block; max-width: 100%; }
a      { text-decoration: none; color: inherit; }
em     { font-style: italic; color: var(--laranja-2); }
strong { font-weight: 700; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ================================================================
   LABELS / TAGS — 12px, 600, uppercase, letter-spacing 2px
================================================================ */
.label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--laranja);
  margin-bottom: 20px;
}
.label--dark { color: var(--laranja); }   /* mesmo tom, legível nos dois fundos */

/* ================================================================
   BOTÕES
================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .06em;
  padding: 16px 36px;
  border: none;
  border-radius: var(--r);
  cursor: pointer;
  transition: opacity .18s, transform .15s;
  white-space: nowrap;
  line-height: 1;
}
.btn:active { transform: scale(1) translateY(0); }

.btn-primary {
  background: linear-gradient(90deg, #FFA050 0%, #FF6B00 55%, #E83000 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,.18) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .2s ease;
  pointer-events: none;
}
.btn-primary:hover {
  transform: scale(1.04) translateY(-2px);
  box-shadow:
    0 0 28px rgba(255, 107, 0, .5),
    0 0 72px rgba(255, 107, 0, .18);
}
.btn-primary:hover::after { opacity: 1; }

.btn-xl   { padding: 20px 52px; font-size: 15px; }
.btn-full { width: 100%; justify-content: center; padding: 16px; }

/* logo nos botões CTA */
.btn-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: screen;
  opacity: .9;
  flex-shrink: 0;
}

.cta-center {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

/* ================================================================
   1. BARRA DE ANÚNCIO — laranja, texto preto
================================================================ */
.annc-bar {
  background: linear-gradient(90deg, #FFA050 0%, #FF6B00 55%, #E83000 100%);
  color: #fff;
  text-align: center;
  padding: 18px 24px;
  font-size: 14px;
  font-weight: 500;
}
.annc-bar strong { font-weight: 800; }

/* ================================================================
   2. HERO — escuro (#0A0A0A)
================================================================ */
.hero {
  background-color: var(--preto);
  background-image:
    linear-gradient(#ffffff08 1px, transparent 1px),
    linear-gradient(90deg, #ffffff08 1px, transparent 1px);
  background-size: 40px 40px;
  padding-bottom: var(--pad);
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
/* blob principal — esquerda */
.hero-glow::before {
  content: '';
  position: absolute;
  top: 35%;
  left: 18%;
  transform: translate(-50%, -50%);
  width: 720px;
  height: 720px;
  background: #FF6B00;
  opacity: .22;
  border-radius: 50%;
  filter: blur(120px);
}
/* blob secundário — canto inferior esquerdo */
.hero-glow::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 5%;
  width: 360px;
  height: 360px;
  background: #FF8C38;
  opacity: .12;
  border-radius: 50%;
  filter: blur(100px);
}

/* ── hero 2 colunas ─────────────────────────────────────────── */
.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.hero-brand-logo {
  height: 52px;
  width: 52px;
  object-fit: cover;
  border-radius: 24%;
}
.hero-brand-name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--txt-p);
}

.hero-top {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: flex-start;    /* imagem cresce para baixo, texto fica no topo */
  padding-top: 48px;
  padding-bottom: 0;          /* pillars vão cobrir o fundo da imagem */
  position: relative;
  z-index: 1;
}

.hero-left { text-align: left; }

.hero-left h1 {
  font-size: clamp(24px, 2.9vw, 38px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.5px;
  line-height: 1.2;
  color: var(--txt-p);
  margin-bottom: 28px;
}

.hl {
  background: linear-gradient(90deg, #FFA050 0%, #FF6B00 55%, #E83000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
}

/* variante para fundo claro — mais saturado para ter contraste */
.hl-dark {
  background: linear-gradient(90deg, #FF7A00 0%, #FF4D00 60%, #CC2800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
}

.micro {
  margin-top: 16px;
  font-size: 13px;
  color: var(--txt-muted);
}

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  mix-blend-mode: screen;   /* apaga o fundo branco no fundo escuro */
  filter: drop-shadow(0 0 60px rgba(255,107,0,.5))
          drop-shadow(0 0 140px rgba(255,107,0,.25));
  animation: float 5s ease-in-out infinite;
}

/* ── pillars ────────────────────────────────────────────────── */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  position: relative;
  z-index: 2;              /* sobrepõe a imagem hero-visual */
  margin-top: -160px;      /* puxa os cards para cima, cobrindo o fundo da mockup */
}

.pillar {
  background: var(--cinza-card);
  border-radius: var(--r);
  padding: 28px 24px;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}

/* borda gradiente via mask — funciona com border-radius */
.pillar::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, #FFA050 0%, #FF6B00 50%, #E83000 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: .35;
  pointer-events: none;
  transition: opacity .2s ease;
}

.pillar:hover {
  transform: scale(1.025) translateY(-2px);
  box-shadow:
    0 0 32px rgba(255, 107, 0, .22),
    0 0 80px rgba(255, 107, 0, .08);
}
.pillar:hover::before { opacity: .9; }

.pillar--active::before { opacity: .7; }

.pillar-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--laranja);
}
.pillar-num  { font-size: 12px; font-weight: 800; letter-spacing: .1em; }
.pillar-icon { flex-shrink: 0; }

.pillar-tag {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--txt-muted);
  margin-bottom: 10px;
}
.pillar h3 { font-size: 15px; font-weight: 700; color: var(--txt-p); margin-bottom: 10px; line-height: 1.3; }
.pillar p  { font-size: 13px; color: var(--txt-sec); line-height: 1.65; }

/* ================================================================
   3. FORMULÁRIO — claro (#F5F5F5)
================================================================ */
.form-section {
  background: var(--cinza-claro);
  padding: var(--pad) 0;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* esquerda */
.form-left h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--txt-esc);
  line-height: 1.2;
  margin-bottom: 16px;
}
.form-left > p {
  font-size: 16px;
  color: var(--txt-muted);
  line-height: 1.75;
  margin-bottom: 36px;
}

.seals {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.seals li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: #333;
  font-weight: 500;
}
.seal-icon {
  width: 36px; height: 36px; min-width: 36px;
  background: var(--branco);
  border: 1px solid var(--borda-clara);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--laranja);
}

/* card escuro do formulário */
.form-card {
  background: var(--cinza-card);
  border: 1px solid var(--cinza-borda);
  border-radius: var(--r);
  padding: 40px 36px;
  box-shadow: 0 24px 64px rgba(0,0,0,.25);
}
.form-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.form-card-header .label { margin-bottom: 0; }
.form-card-logo {
  height: 64px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: screen;
  opacity: .7;
}

.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--txt-sec);
  margin-bottom: 8px;
}
.field input,
.field select {
  width: 100%;
  background: var(--cinza-med);
  border: 1px solid var(--cinza-borda);
  border-radius: 8px;
  padding: 13px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--txt-p);
  outline: none;
  transition: border-color .2s, background .2s;
}
.field input::placeholder { color: #3a3a3a; }
.field input:focus,
.field select:focus {
  border-color: var(--laranja);
  background: rgba(255,107,0,.04);
  box-shadow: 0 0 0 3px rgba(255,107,0,.08);
}
.field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  background-color: var(--cinza-med);
}
.field select option { background: var(--cinza-card); color: var(--txt-p); }

/* ── validação ──────────────────────────────────────────────── */
.field-msg {
  display: none;
  font-size: 11px;
  font-weight: 600;
  margin-top: 5px;
  letter-spacing: .02em;
}
.field--error .field-msg { display: block; color: #FF4040; }
.field--ok    .field-msg { display: block; color: #22C55E; }

.field--error input,
.field--error select {
  border-color: #FF4040 !important;
  box-shadow: 0 0 0 3px rgba(255,64,64,.1) !important;
}
.field--ok input,
.field--ok select {
  border-color: #22C55E !important;
  box-shadow: 0 0 0 3px rgba(34,197,94,.08) !important;
}

/* toast de sucesso */
.form-toast {
  display: none;
  background: #22C55E;
  color: #fff;
  border-radius: var(--r);
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  margin-top: 16px;
}

/* ================================================================
   4. DIAGNÓSTICO — escuro (#111111)
================================================================ */
.diagnostico {
  background-color: var(--cinza-esc);
  background-image:
    linear-gradient(#ffffff08 1px, transparent 1px),
    linear-gradient(90deg, #ffffff08 1px, transparent 1px);
  background-size: 40px 40px;
  padding: var(--pad) 0;
}

/* grid 2 colunas: conteúdo + imagem */
.diag-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 64px;
}

.diag-content h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--txt-p);
  margin-bottom: 40px;
  line-height: 1.18;
}

.diag-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.diag-icon {
  width: 100%;
  max-width: 460px;
  height: auto;
  object-fit: contain;
  mix-blend-mode: lighten;
  filter: drop-shadow(0 0 56px rgba(255, 107, 0, 0.65))
          drop-shadow(0 0 120px rgba(255, 107, 0, 0.3));
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 560px;
  margin-bottom: 60px;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 17px;
  font-weight: 500;
  color: var(--txt-p);
}
.check-ico {
  width: 28px; height: 28px; min-width: 28px;
  background: rgba(255,107,0,.1);
  border: 1px solid rgba(255,107,0,.3);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--laranja);
}

/* concorda */
.concorda {
  border-left: 3px solid var(--laranja);
  padding-left: 32px;
  max-width: 700px;
}
.concorda h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--txt-p);
  margin-bottom: 28px;
}
.concorda-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.concorda-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.concorda-num {
  font-size: 12px;
  font-weight: 800;
  color: var(--laranja);
  letter-spacing: .1em;
  flex-shrink: 0;
  margin-top: 3px;
  min-width: 24px;
}
.concorda-item p {
  font-size: 17px;
  color: var(--txt-sec);
  line-height: 1.55;
}

/* ================================================================
   5. SOBRE PEDRO — claro (branco)
================================================================ */
.sobre {
  background: var(--branco);
  padding: var(--pad) 0;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: start;
}

.sobre-foto {
  position: sticky;
  top: 40px;
}
.sobre-foto img {
  width: 100%;
  border-radius: var(--r);
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}
.foto-ph {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--cinza-claro-2);
  border: 1px solid var(--borda-clara);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: #AAAAAA;
  text-align: center;
  line-height: 2;
}

.sobre-content h2 {
  font-size: clamp(24px, 3.2vw, 38px);
  font-weight: 700;
  color: var(--txt-esc);
  line-height: 1.2;
  margin-bottom: 20px;
}
.sobre-content > p {
  font-size: 16px;
  color: var(--txt-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.metricas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 36px 0;
}
.metrica {
  border: 1px solid var(--laranja);
  border-radius: var(--r);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.metrica-num {
  font-size: 28px;
  font-weight: 900;
  color: var(--laranja);
  letter-spacing: -.02em;
  line-height: 1;
}
.metrica-lbl {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--txt-muted);
}

.resolve {
  background: var(--cinza-claro);
  border: 1px solid var(--borda-clara);
  border-radius: var(--r);
  padding: 24px 28px;
  margin-bottom: 36px;
}
.resolve h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--txt-esc);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 16px;
}
.resolve ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.resolve li {
  font-size: 14px;
  color: var(--txt-muted);
  padding-left: 16px;
  position: relative;
}
.resolve li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  background: var(--laranja);
  border-radius: 50%;
}

/* ================================================================
   6. PAIN POINTS — escuro (#111111)
================================================================ */
.pain {
  background-color: var(--cinza-esc);
  background-image:
    linear-gradient(#ffffff08 1px, transparent 1px),
    linear-gradient(90deg, #ffffff08 1px, transparent 1px);
  background-size: 40px 40px;
  padding: var(--pad) 0;
}

.pain h2 {
  font-size: clamp(26px, 3.8vw, 44px);
  font-weight: 700;
  color: var(--txt-p);
  max-width: 820px;
  margin-bottom: 16px;
  line-height: 1.18;
}
.pain-sub {
  font-size: 18px;
  color: var(--txt-sec);
  margin-bottom: 52px;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.pain-card {
  background: var(--cinza-card);
  border: 1px solid var(--cinza-borda);
  border-radius: var(--r);
  padding: 28px 24px;
  transition: border-color .2s, transform .2s;
}
.pain-card:hover     { border-color: rgba(255,107,0,.3); transform: translateY(-3px); }
.pain-card--wide     { grid-column: span 2; }

.pain-icon {
  width: 44px; height: 44px;
  background: rgba(255,107,0,.08);
  border: 1px solid rgba(255,107,0,.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--laranja);
  margin-bottom: 18px;
}
.pain-card h4 {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--laranja);
  margin-bottom: 10px;
}
.pain-card p { font-size: 14px; color: var(--txt-sec); line-height: 1.65; }

/* ================================================================
   7. METODOLOGIA CORE — claro (#F5F5F5)
================================================================ */
.core {
  background: var(--cinza-claro);
  padding: var(--pad) 0;
}

/* header da seção CORE: texto à esquerda, cavalo à direita */
.core-header {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 56px;
  align-items: center;
  margin-bottom: 52px;
}
.core-header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.core-icon {
  width: 100%;
  max-width: 260px;
  height: auto;
  mix-blend-mode: multiply;   /* fundo branco some no fundo claro (#F5F5F5) */
  filter: drop-shadow(0 4px 24px rgba(255, 107, 0, 0.25));
  animation: float 4s ease-in-out infinite;
}

.core h2 {
  font-size: clamp(24px, 3.2vw, 38px);
  font-weight: 700;
  color: var(--txt-esc);
  margin-bottom: 16px;
  line-height: 1.2;
}
.core-sub {
  font-size: 17px;
  color: var(--txt-muted);
  line-height: 1.65;
  margin-bottom: 0;
}
.core-sub strong { color: var(--txt-esc); }

.motors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.motor {
  background: var(--branco);
  border: 1px solid var(--borda-clara);
  border-radius: var(--r);
  padding: 32px 28px;
  transition: border-color .2s, transform .2s;
}
.motor:hover      { border-color: rgba(255,107,0,.3); transform: translateY(-3px); }
.motor--active    { border-left: 3px solid var(--laranja); }

.motor-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--laranja);
}
.motor-num { font-size: 12px; font-weight: 800; letter-spacing: .1em; }
.motor h3  { font-size: 18px; font-weight: 700; color: var(--txt-esc); margin-bottom: 12px; }
.motor p   { font-size: 14px; color: var(--txt-muted); line-height: 1.7; }

.core-nota {
  max-width: 680px;
  font-size: 16px;
  color: var(--txt-muted);
  line-height: 1.75;
  padding: 28px 36px;
  background: var(--cinza-claro-2);
  border: 1px solid var(--borda-clara);
  border-left: 3px solid var(--laranja);
  border-radius: var(--r);
}

/* ================================================================
   8. RESULTADOS — escuro (#0A0A0A)
================================================================ */
.resultados {
  background-color: var(--preto);
  background-image:
    linear-gradient(#ffffff08 1px, transparent 1px),
    linear-gradient(90deg, #ffffff08 1px, transparent 1px);
  background-size: 40px 40px;
  padding: var(--pad) 0 0;
  border-top: 1px solid var(--cinza-borda);
}

.resultados .container { padding-bottom: 40px; }

.resultados h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--txt-p);
  margin-bottom: 0;
}

/* ================================================================
   9. DEPOIMENTOS — claro (branco)
================================================================ */
.depoimentos {
  background: var(--branco);
  padding: var(--pad) 0;
}

.depoimentos h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--txt-esc);
  margin-bottom: 48px;
}

/* ── carrossel ───────────────────────────────────────────────── */
.carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  padding-bottom: var(--pad);
}

.carousel-viewport {
  flex: 1;
  overflow: hidden;
  cursor: grab;
  user-select: none;
}
.carousel-viewport.is-dragging { cursor: grabbing; }

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform .4s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
  padding: 16px 0;
}
.carousel-track.no-transition { transition: none; }

.carousel-slide {
  flex: 0 0 300px;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.35);
  transition: transform .2s, box-shadow .2s;
}
.carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
}
.carousel-slide:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 36px rgba(0,0,0,.5);
}

/* setas — estilo escuro (dentro da seção resultados) */
.carousel-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--cinza-card);
  border: 1px solid var(--cinza-borda);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--txt-p);
  transition: background .2s, border-color .2s, transform .15s, box-shadow .2s;
  position: relative;
  z-index: 2;
  margin: 0 16px;
}
.carousel-btn:hover {
  background: var(--laranja);
  border-color: var(--laranja);
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(255,107,0,.4);
}

/* ── novo slider de depoimentos ─────────────────────────────── */
.testi-slider { position: relative; }

.testi-slide {
  display: none;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: stretch;
}
.testi-slide--active { display: grid; }

/* vídeo vertical (Shorts 9:16) */
.testi-video-wrap {
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 9/16;
  max-height: 520px;
  background: #000;
  display: block;
  position: relative;
}
.testi-video-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* thumbnail — botão que abre lightbox */
.testi-yt-link {
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  width: 100%;
  text-align: left;
}
.testi-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity .2s;
}
.testi-yt-link:hover .testi-thumb { opacity: .85; }
.testi-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.testi-play > svg {
  width: 64px;
  height: 64px;
  background: rgba(255,0,0,.9);
  border-radius: 14px;
  padding: 14px 18px 14px 20px;
  color: #fff;
  box-shadow: 0 4px 24px rgba(0,0,0,.4);
  transition: transform .2s;
}
.testi-yt-link:hover .testi-play > svg { transform: scale(1.08); }

.testi-video-ph {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--cinza-claro-2);
  color: var(--txt-muted);
  font-size: 14px;
  font-weight: 600;
}

/* card laranja */
.testi-card-new {
  background: linear-gradient(135deg, #FF7A00 0%, #FF5500 100%);
  border-radius: 20px;
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  color: #fff;
}
.testi-quote-icon {
  font-size: 72px;
  line-height: .8;
  color: rgba(255,255,255,.5);
  font-family: Georgia, serif;
  margin-bottom: 20px;
}
.testi-card-new blockquote {
  font-size: 18px;
  line-height: 1.72;
  color: #fff;
  flex: 1;
  margin-bottom: 28px;
  font-style: normal;
}
.testi-stars {
  font-size: 20px;
  letter-spacing: 3px;
  color: #fff;
  margin-bottom: 12px;
}
.testi-name {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}
.testi-role {
  font-size: 14px;
  color: rgba(255,255,255,.75);
  margin-bottom: 32px;
  display: block;
}

/* navegação dentro do card */
.testi-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
  margin-top: auto;
}
.testi-counter {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  font-weight: 600;
}
.testi-btn {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: background .18s, transform .15s;
}
.testi-btn:hover {
  background: rgba(255,255,255,.38);
  transform: scale(1.08);
}

.depo-wrap { display: flex; justify-content: center; }

.depo-card {
  max-width: 680px;
  width: 100%;
  background: var(--cinza-claro);
  border: 1px solid var(--borda-clara);
  border-left: 4px solid var(--laranja);
  border-radius: var(--r);
  padding: 40px 44px;
}
.depo-stars {
  font-size: 18px;
  color: var(--laranja);
  letter-spacing: 3px;
  margin-bottom: 20px;
}
.depo-card blockquote {
  font-size: 18px;
  line-height: 1.75;
  color: var(--txt-esc);
  margin-bottom: 28px;
  font-style: normal;
}
.depo-autor { display: flex; align-items: center; gap: 14px; }
.autor-avatar {
  width: 44px; height: 44px;
  background: var(--grad);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.depo-autor strong { display: block; font-size: 15px; font-weight: 700; color: var(--txt-esc); }
.depo-autor span   { font-size: 13px; color: var(--txt-muted); }

/* ================================================================
   10. CTA FINAL — escuro com gradiente laranja sutil
================================================================ */
.cta-final {
  background-color: var(--cinza-esc);
  background-image:
    linear-gradient(#ffffff08 1px, transparent 1px),
    linear-gradient(90deg, #ffffff08 1px, transparent 1px);
  background-size: 40px 40px;
  padding: var(--pad) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
/* blob principal — esquerda */
.cta-final-glow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translate(-50%, -50%);
  width: 720px;
  height: 720px;
  background: #FF6B00;
  opacity: .22;
  border-radius: 50%;
  filter: blur(130px);
}
/* blob secundário — inferior esquerdo */
.cta-final-glow::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 5%;
  width: 300px;
  height: 300px;
  background: #FF8C38;
  opacity: .12;
  border-radius: 50%;
  filter: blur(90px);
}
.cta-final .container { position: relative; z-index: 1; }

.cta-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
}
.cta-logo img { height: 44px; width: auto; }

.cta-final h2 {
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 800;
  color: var(--txt-p);
  max-width: 820px;
  margin: 0 auto 48px;
  line-height: 1.18;
  letter-spacing: -.5px;
}
.cta-micro {
  margin-top: 20px;
  font-size: 13px;
  color: var(--txt-muted);
}

/* ================================================================
   FOOTER
================================================================ */
.footer {
  background: var(--preto);
  border-top: 1px solid var(--cinza-borda);
  padding: 32px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-logo img { height: 28px; width: auto; }
.footer p { font-size: 13px; color: var(--txt-muted); }

/* ================================================================
   RESPONSIVO
================================================================ */
@media (max-width: 960px) {
  :root { --pad: 80px; }

  .hero-top     { grid-template-columns: 1fr; padding-bottom: 48px; }
  .hero-right   { display: none; }
  .pillars      { grid-template-columns: 1fr; }
  .form-grid    { grid-template-columns: 1fr; gap: 48px; }
  .diag-grid        { grid-template-columns: 1fr; }
  .testi-slide--active { grid-template-columns: 1fr; }
  .testi-video-wrap    { max-height: 320px; aspect-ratio: 16/9; }
  .diag-visual      { display: none; }
  .core-header      { grid-template-columns: 1fr; }
  .core-header-logo { display: none; }
  .sobre-grid   { grid-template-columns: 1fr; }
  .sobre-foto   { position: static; max-width: 340px; }
  .motors       { grid-template-columns: 1fr; }
  .resultados-grid { grid-template-columns: repeat(2, 1fr); }
  .pain-grid    { grid-template-columns: 1fr; }
  .pain-card--wide { grid-column: span 1; }
  .metricas     { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
  :root { --pad: 60px; }

  .container          { padding: 0 20px; }
  .hero-left h1       { letter-spacing: -.5px; }
  .hero-sub           { font-size: 17px; }
  .form-card          { padding: 28px 20px; }
  .sobre-foto         { max-width: 100%; }
  .metricas           { grid-template-columns: 1fr; }
  .resultados-grid    { grid-template-columns: repeat(2, 1fr); }
  .resultado-ph       { aspect-ratio: 4/5; }
  .depo-card          { padding: 28px 24px; }
  .concorda           { padding-left: 20px; }
  .core-nota          { padding: 20px 24px; }
}
