/* ===================================================
   GLADIUM – Landing Page | style.css
   Mobile-first · Azul & Branco · Alta Conversão
=================================================== */

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

:root {
  --blue-900: #0a1f44;
  --blue-800: #0d2b5e;
  --blue-700: #1040a0;
  --blue-600: #1a56d6;
  --blue-500: #2563eb;
  --blue-400: #3b82f6;
  --blue-100: #dbeafe;
  --blue-50:  #eff6ff;
  --blue-bg:  #f0f6ff;

  --green-500: #22c55e;
  --green-600: #16a34a;
  --red-500:   #ef4444;
  --red-600:   #dc2626;
  --orange-500:#f97316;
  --purple-600:#7c3aed;
  --purple-700:#6d28d9;
  --teal-500:  #14b8a6;

  --white:     #ffffff;
  --gray-50:   #f9fafb;
  --gray-100:  #f3f4f6;
  --gray-200:  #e5e7eb;
  --gray-400:  #9ca3af;
  --gray-600:  #4b5563;
  --gray-700:  #374151;
  --gray-900:  #111827;

  --wpp-green: #25D366;
  --wpp-dark:  #128C7E;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:  0 4px 16px rgba(10,31,68,.12);
  --shadow-lg:  0 10px 40px rgba(10,31,68,.16);
  --shadow-xl:  0 20px 60px rgba(10,31,68,.20);

  --transition: .25s ease;

  font-size: 16px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--white);
  color: var(--gray-900);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px;
}

.hidden { display: none !important; }


/* ===================================================
   WHATSAPP FLUTUANTE
=================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 22px;
  z-index: 999;
  background: var(--wpp-green);
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.6);
}
.wpp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--gray-900);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.wpp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--gray-900);
  border-right-width: 0;
}
.whatsapp-float:hover .wpp-tooltip { opacity: 1; }


/* ===================================================
   BOTÕES GLOBAIS
=================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-align: center;
  width: 100%;
  max-width: 440px;
}
.btn i { font-size: 18px; }

.btn-primary {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  color: var(--white);
  box-shadow: 0 6px 24px rgba(37,99,235,.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--blue-600), var(--blue-800));
  box-shadow: 0 8px 32px rgba(37,99,235,.45);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, var(--wpp-green), var(--wpp-dark));
  color: var(--white);
  box-shadow: 0 6px 24px rgba(37,211,102,.35);
  font-size: 16px;
}
.btn-whatsapp:hover {
  box-shadow: 0 8px 32px rgba(37,211,102,.5);
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.btn-urgency {
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  box-shadow: 0 6px 24px rgba(239,68,68,.35) !important;
}
.btn-urgency:hover {
  box-shadow: 0 8px 32px rgba(239,68,68,.5) !important;
}

.btn-purple {
  background: linear-gradient(135deg, var(--purple-600), var(--purple-700)) !important;
  box-shadow: 0 6px 24px rgba(124,58,237,.35) !important;
}
.btn-purple:hover {
  box-shadow: 0 8px 32px rgba(124,58,237,.5) !important;
}

.btn-cta-cert {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  color: var(--white);
  box-shadow: 0 6px 24px rgba(37,99,235,.35);
}
.btn-cta-cert:hover {
  box-shadow: 0 8px 32px rgba(37,99,235,.5);
  transform: translateY(-2px);
}

.btn-cta-emissor {
  background: linear-gradient(135deg, var(--wpp-green), var(--wpp-dark));
  color: var(--white);
  box-shadow: 0 6px 24px rgba(37,211,102,.35);
}
.btn-cta-emissor:hover {
  box-shadow: 0 8px 32px rgba(37,211,102,.5);
  transform: translateY(-2px);
}

/* Pulse animation for hero button */
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(37,99,235,.5); }
  70%  { box-shadow: 0 0 0 14px rgba(37,99,235,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,99,235,0); }
}
.pulse { animation: pulse-ring 2s infinite; }


/* ===================================================
   LOGOS
=================================================== */
.logo-img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Hero logo – versão clara, topo centralizado */
.hero-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}
.hero-logo .logo-img {
  width: 220px;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,.25));
}

/* Prova social – logo escura sobre fundo branco */
.social-proof-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
}
.logo-proof {
  width: 180px;
  opacity: .85;
  transition: opacity var(--transition);
}
.logo-proof:hover { opacity: 1; }

/* Footer – logo clara sobre fundo escuro */
.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.logo-footer {
  width: 160px;
  filter: drop-shadow(0 1px 6px rgba(0,0,0,.3));
  opacity: .9;
}


/* ===================================================
   HERO
=================================================== */
.hero {
  background: linear-gradient(160deg, var(--blue-900) 0%, var(--blue-700) 60%, var(--blue-500) 100%);
  padding: 70px 0 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
}

.hero-headline {
  font-size: clamp(28px, 6vw, 52px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.highlight {
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(16px, 2.5vw, 20px);
  color: rgba(255,255,255,.85);
  margin-bottom: 32px;
  line-height: 1.6;
}
.br-desktop { display: none; }

.hero-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-bottom: 36px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.9);
  font-size: 14px;
  font-weight: 500;
}
.trust-item i { color: var(--green-500); font-size: 16px; }

.btn-hero {
  margin: 0 auto 18px;
  font-size: 18px;
  padding: 18px 40px;
  max-width: 320px;
}

.hero-micro {
  color: rgba(255,255,255,.6);
  font-size: 13px;
  margin-bottom: 48px;
}

.hero-wave {
  width: 100%;
  line-height: 0;
  margin-top: 0;
}
.hero-wave svg { width: 100%; height: 50px; }


/* ===================================================
   QUIZ / QUALIFICAÇÃO
=================================================== */
.quiz-section {
  background: var(--blue-bg);
  padding: 60px 0 70px;
}

.quiz-step { display: none; }
.quiz-step.active { display: block; }

.quiz-header {
  text-align: center;
  margin-bottom: 28px;
}
.step-indicator {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}
.step-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gray-200);
  transition: background var(--transition);
}
.step-dot.active  { background: var(--blue-500); }
.step-dot.completed { background: var(--green-500); }

.step-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.quiz-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 28px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--blue-100);
  text-align: center;
}

.quiz-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 30px;
  color: var(--blue-600);
}

.quiz-title {
  font-size: clamp(20px, 4vw, 26px);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 10px;
  line-height: 1.25;
}

.quiz-sub {
  font-size: 15px;
  color: var(--gray-600);
  margin-bottom: 30px;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 420px;
  margin: 0 auto;
}

.quiz-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-700);
  cursor: pointer;
  transition: all var(--transition);
  text-align: left;
}
.quiz-btn i {
  font-size: 20px;
  color: var(--blue-500);
  min-width: 22px;
}
.quiz-btn:hover {
  border-color: var(--blue-500);
  background: var(--blue-50);
  color: var(--blue-700);
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}
.quiz-btn:hover i { color: var(--blue-600); }

.quiz-btn-urgent { border-color: #fca5a5 !important; }
.quiz-btn-urgent i { color: var(--red-500) !important; }
.quiz-btn-urgent:hover {
  border-color: var(--red-500) !important;
  background: #fff5f5 !important;
  color: var(--red-600) !important;
}


/* ===================================================
   BLOCOS DE RESULTADO
=================================================== */
.block-section {
  padding: 60px 0;
  background: var(--blue-bg);
}

.block-card {
  border-radius: var(--radius-xl);
  padding: 40px 28px;
  box-shadow: var(--shadow-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.block-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  opacity: .06;
  background: var(--white);
}

.block-blue-gradient {
  background: linear-gradient(145deg, var(--blue-800) 0%, var(--blue-600) 100%);
  color: var(--white);
}
.block-blue-soft {
  background: linear-gradient(145deg, #1e40af 0%, var(--blue-500) 100%);
  color: var(--white);
}
.block-urgency {
  background: linear-gradient(145deg, #7f1d1d 0%, #dc2626 100%);
  color: var(--white);
}
.block-diferencial {
  background: linear-gradient(145deg, #3b0764 0%, var(--purple-600) 100%);
  color: var(--white);
}

.block-tag {
  display: inline-block;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.3);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 22px;
  text-transform: uppercase;
  letter-spacing: .8px;
}
.tag-red    { background: rgba(255,255,255,.18) !important; }
.tag-green  { background: rgba(34,197,94,.25)   !important; border-color: rgba(34,197,94,.4) !important; }
.tag-purple { background: rgba(255,255,255,.18) !important; }
.tag-teal   { background: rgba(20,184,166,.25)  !important; border-color: rgba(20,184,166,.4) !important; }

.block-icon-wrap {
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,.15);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}
.block-icon { font-size: 36px; color: var(--white); }
.icon-red    { color: #fca5a5 !important; }
.icon-purple { color: #c4b5fd !important; }

.block-title {
  font-size: clamp(22px, 5vw, 30px);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.block-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.price-from  { font-size: 14px; color: rgba(255,255,255,.7); }
.price-value {
  font-size: clamp(36px, 8vw, 52px);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.price-obs { font-size: 14px; color: rgba(255,255,255,.75); }

.block-text {
  font-size: 16px;
  color: rgba(255,255,255,.9);
  margin-bottom: 26px;
  line-height: 1.7;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.urgency-text strong { color: #fca5a5; }

.block-list {
  text-align: left;
  max-width: 420px;
  margin: 0 auto 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.block-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: rgba(255,255,255,.92);
  font-weight: 500;
}
.block-list li i {
  color: var(--green-500);
  font-size: 16px;
  margin-top: 2px;
  min-width: 16px;
}

.block-micro {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  margin-top: 14px;
}
.block-micro i { margin-right: 4px; }

.btn { margin: 0 auto; }


/* ===================================================
   URGÊNCIA – STEPS
=================================================== */
.urgency-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 380px;
  margin: 0 auto 32px;
  text-align: left;
}
.urgency-step {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: rgba(255,255,255,.9);
  font-weight: 500;
}
.step-num {
  min-width: 34px;
  height: 34px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: var(--white);
}


/* ===================================================
   ORIENTAÇÃO – STEPS
=================================================== */
.orientacao-steps {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 440px;
  margin: 0 auto 32px;
  text-align: left;
}
.orientacao-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-md);
  padding: 18px 20px;
}
.orientacao-step strong { color: var(--white); font-size: 16px; font-weight: 700; }
.orientacao-step p { font-size: 14px; color: rgba(255,255,255,.75); margin-top: 4px; }
.o-step-num {
  min-width: 44px;
  height: 44px;
  background: rgba(255,255,255,.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--white);
}
.orientacao-arrow {
  text-align: center;
  color: rgba(255,255,255,.4);
  font-size: 18px;
  padding: 4px 0;
}


/* ===================================================
   FUNIL VISUAL
=================================================== */
.funnel-wrap {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  margin: 0 auto 30px;
  max-width: 560px;
}
.funnel-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,.6);
  margin-bottom: 18px;
}
.funnel-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
}
.funnel-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  min-width: 64px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  transition: all var(--transition);
}
.funnel-item i { font-size: 20px; }
.funnel-item.active-item {
  background: rgba(255,255,255,.22);
  color: var(--white);
  box-shadow: 0 0 0 2px rgba(255,255,255,.3);
}
.funnel-arrow {
  color: rgba(255,255,255,.35);
  font-size: 13px;
}


/* ===================================================
   PROVA SOCIAL
=================================================== */
.social-proof {
  background: var(--white);
  padding: 70px 0;
}

.section-title {
  font-size: clamp(22px, 4.5vw, 32px);
  font-weight: 800;
  color: var(--gray-900);
  text-align: center;
  margin-bottom: 44px;
  line-height: 1.25;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.proof-item {
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}
.proof-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.proof-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--blue-100), var(--blue-200, #bfdbfe));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 22px;
  color: var(--blue-600);
}

.proof-num {
  font-size: 32px;
  font-weight: 900;
  color: var(--blue-700);
  line-height: 1;
  margin-bottom: 4px;
}
.proof-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.proof-item p {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.5;
}


/* ===================================================
   CTA FINAL
=================================================== */
.final-cta {
  background: linear-gradient(160deg, var(--blue-900) 0%, var(--blue-700) 100%);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
}
.final-cta::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
}

.final-cta-inner { position: relative; z-index: 1; }

.final-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.9);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}

.final-cta-title {
  font-size: clamp(26px, 5.5vw, 42px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.final-cta-sub {
  font-size: 17px;
  color: rgba(255,255,255,.8);
  margin-bottom: 38px;
}

.final-cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.final-micro {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  margin-top: 20px;
}


/* ===================================================
   FOOTER
=================================================== */
.footer {
  background: var(--blue-900);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 48px 0 32px;
  text-align: center;
}

/* Logo no footer */
.footer .footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.logo-footer {
  width: 160px;
  filter: drop-shadow(0 1px 6px rgba(0,0,0,.3));
  opacity: .9;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  margin-bottom: 0;
}

/* Divisor */
.footer-divider {
  width: 48px;
  height: 2px;
  background: rgba(255,255,255,.12);
  border-radius: 2px;
  margin: 24px auto;
}

/* Redes Sociais */
.footer-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.8);
  font-size: 14px;
  font-weight: 600;
  transition: all var(--transition);
  text-decoration: none;
}
.footer-social-link i { font-size: 18px; }
.footer-social-link:hover {
  background: rgba(255,255,255,.16);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
}
/* Instagram – gradiente roxo/laranja no hover */
.footer-social-link.footer-ig:hover {
  background: linear-gradient(135deg, rgba(131,58,180,.4), rgba(253,29,29,.3), rgba(252,176,69,.3));
  border-color: rgba(253,29,29,.4);
}
/* Facebook – azul no hover */
.footer-social-link.footer-fb:hover {
  background: rgba(24,119,242,.3);
  border-color: rgba(24,119,242,.5);
}
/* WhatsApp – verde */
.footer-wpp i { color: #4ade80; }
.footer-wpp:hover {
  background: rgba(37,211,102,.2) !important;
  border-color: rgba(37,211,102,.4) !important;
  color: #4ade80 !important;
}

/* Trust bar */
.footer-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  margin-bottom: 24px;
}
.footer-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,.38);
  font-weight: 500;
}
.footer-trust i {
  font-size: 11px;
  color: rgba(255,255,255,.3);
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,.25);
}


/* ===================================================
   CRO — NOVOS ELEMENTOS DE CONVERSÃO
=================================================== */

/* Subtítulo da seção prova social */
.section-sub {
  text-align: center;
  font-size: 16px;
  color: var(--gray-600);
  margin-top: -28px;
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Contador visual */
.proof-counter-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: linear-gradient(135deg, var(--blue-800), var(--blue-600));
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-lg);
}
.proof-counter {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.proof-counter-divider {
  width: 1px;
  height: 52px;
  background: rgba(255,255,255,.2);
  margin: 0 8px;
}
.counter-num {
  font-size: clamp(30px, 7vw, 44px);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.counter-suffix {
  font-size: clamp(18px, 4vw, 26px);
  font-weight: 900;
  color: rgba(255,255,255,.75);
  margin-left: 2px;
}
.counter-label {
  font-size: 12px;
  color: rgba(255,255,255,.65);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-top: 4px;
}

/* Checklist de credibilidade */
.proof-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 600px;
  margin: 0 auto 44px;
}
.proof-check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  line-height: 1.4;
}
.proof-check-item i {
  color: var(--green-500);
  font-size: 16px;
  margin-top: 1px;
  min-width: 16px;
}

/* Dores no bloco urgência */
.urgency-pains {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 360px;
  margin: 0 auto 24px;
}
.urgency-pain {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  color: #fca5a5;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
}
.urgency-pain i {
  color: #f87171;
  font-size: 16px;
}

/* Comparativo emissor */
.emissor-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 480px;
  margin: 0 auto 24px;
  text-align: left;
}
.compare-col {
  border-radius: var(--radius-md);
  padding: 18px 16px;
  font-size: 13px;
  line-height: 1.6;
}
.compare-label {
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 7px;
  text-transform: uppercase;
  letter-spacing: .4px;
}
.compare-col ul { display: flex; flex-direction: column; gap: 8px; }
.compare-col ul li { display: flex; align-items: flex-start; gap: 6px; font-size: 13px; }

.compare-bad {
  background: rgba(239,68,68,.15);
  border: 1px solid rgba(239,68,68,.3);
  color: rgba(255,255,255,.8);
}
.compare-bad .compare-label { color: #fca5a5; }
.compare-bad .compare-label i { color: #f87171; }
.compare-bad ul li::before {
  content: '✗';
  color: #f87171;
  font-weight: 700;
  min-width: 14px;
}

.compare-good {
  background: rgba(34,197,94,.15);
  border: 1px solid rgba(34,197,94,.3);
  color: rgba(255,255,255,.9);
}
.compare-good .compare-label { color: #86efac; }
.compare-good .compare-label i { color: var(--green-500); }
.compare-good ul li::before {
  content: '✓';
  color: #4ade80;
  font-weight: 700;
  min-width: 14px;
}

/* Responsivo comparativo em mobile */
@media (max-width: 480px) {
  .emissor-compare { grid-template-columns: 1fr; }
  .proof-checklist { grid-template-columns: 1fr; }
  .proof-counter-row { padding: 20px 12px; gap: 0; }
  .counter-num { font-size: 28px; }
  .counter-suffix { font-size: 18px; }
}


/* ===================================================
   ANIMAÇÕES
=================================================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.block-section:not(.hidden) .block-card {
  animation: fadeInUp .45s ease both;
}

.quiz-step.active .quiz-card {
  animation: fadeInUp .35s ease both;
}


/* ===================================================
   RESPONSIVE – TABLET (≥600px)
=================================================== */
@media (min-width: 600px) {
  .br-desktop { display: block; }
  .hero-logo .logo-img  { width: 260px; }
  .logo-proof           { width: 200px; }
  .logo-footer          { width: 180px; }

  .quiz-card   { padding: 48px 44px; }
  .block-card  { padding: 48px 44px; }

  .final-cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
  .final-cta-buttons .btn { width: auto; }
}


/* ===================================================
   RESPONSIVE – DESKTOP (≥900px)
=================================================== */
@media (min-width: 900px) {
  .hero { padding: 90px 0 0; }
  .hero-logo .logo-img  { width: 300px; }
  .logo-proof           { width: 220px; }
  .logo-footer          { width: 200px; }

  .btn-hero { max-width: 340px; }

  .proof-grid { grid-template-columns: repeat(4, 1fr); }

  .funnel-steps { flex-wrap: nowrap; }

  .block-card  { padding: 56px 60px; }
  .quiz-card   { padding: 52px 56px; }
}
