/* =====================================================
   CLICKIMPULSO — Design System v2.1
   Dark Premium | Vermelho #FA0D1D | Animações Scroll
   Efeitos visuais, fundos, partículas
   ===================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:        #FA0D1D;
  --red-dark:   #c0000f;
  --red-glow:   rgba(250, 13, 29, 0.25);
  --bg:         #080808;
  --bg-2:       #0f0f0f;
  --bg-card:    rgba(255,255,255,0.03);
  --border:     rgba(255,255,255,0.08);
  --border-red: rgba(250,13,29,0.3);
  --text-1:     #FFFFFF;
  --text-2:     rgba(255,255,255,0.65);
  --text-3:     rgba(255,255,255,0.35);

  --font-head:  'Poppins', sans-serif;
  --font-body:  'Roboto', sans-serif;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;

  --ease-out:   cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 0.35s var(--ease-out);
}

/* ─── BASE ─────────────────────────────────────────── */
html {
  scroll-behavior: smooth;
  background: var(--bg);
}
body {
  font-family: var(--font-body);
  color: var(--text-1);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ─── PARTÍCULAS FLUTUANTES (canvas) ───────────────── */
#particles-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}

/* ─── RAIOS VERMELHOS (canvas) ──────────────────────── */
#lightning-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
  mix-blend-mode: screen;
  will-change: contents;
}

/* ─── ORBES DECORATIVOS ─────────────────────────────── */
.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  will-change: transform;
  animation: orbFloat var(--orb-duration, 12s) ease-in-out infinite alternate;
}
@keyframes orbFloat {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(var(--orb-tx, 30px), var(--orb-ty, -20px)) scale(1.08); }
}

/* ─── LINHA DIAGONAL DECORATIVA ─────────────────────── */
.section-line-deco {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.section-line-deco::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(250,13,29,0.07);
  border-radius: 50%;
  animation: spinSlow 30s linear infinite;
}
.section-line-deco::after {
  content: '';
  position: absolute;
  top: -20%;
  right: 5%;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(250,13,29,0.05);
  border-radius: 50%;
  animation: spinSlow 20s linear infinite reverse;
}
@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ─── NOISE OVERLAY ─────────────────────────────────── */
.noise-overlay {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
  mix-blend-mode: overlay;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
p { margin: 0; }

/* ─── TIPOGRAFIA ────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
}
h1, .h1 {
  font-family: var(--font-head);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-1);
}
h2, .h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-1);
}
h3, .h3 {
  font-family: var(--font-head);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  color: var(--text-1);
}
h4, .h4 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-1);
}
.lead {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-2);
  line-height: 1.7;
}
.body-text {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
}
.accent { color: var(--red); }

/* ─── LAYOUT ────────────────────────────────────────── */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}
section {
  padding: 100px 0;
}
.section-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── HEADER ────────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 16px 24px;
  transition: background var(--transition), box-shadow var(--transition);
}
#site-header.scrolled {
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--text-1);
  white-space: nowrap;
}
.logo span { color: var(--red); }
.nav-links-desktop {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links-desktop a {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-2);
  transition: color var(--transition);
}
.nav-links-desktop a:hover { color: var(--text-1); }

/* ─── MOBILE NAV OVERLAY ────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(8,8,8,0.98);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 40px 24px;
  overflow-y: auto;
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav a {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-1);
  padding: 18px 0;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.04em;
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--red); }
.mobile-nav .mobile-nav-cta {
  margin-top: 28px;
  border-bottom: none;
  width: auto;
  padding: 16px 44px;
  font-size: 15px;
  letter-spacing: 0.08em;
}

/* ─── BOTÕES ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 4px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 0 0 0 var(--red-glow);
}
.btn-primary:hover {
  background: var(--red-dark);
  box-shadow: 0 8px 32px var(--red-glow);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--text-1);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 20px; font-size: 12px; }
.btn-lg { padding: 18px 40px; font-size: 15px; }

/* ─── HERO ───────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 160px 0 100px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%) brightness(0.50);
  transform: scale(1.04);
  animation: heroImgPan 20s ease-in-out infinite alternate;
}
@keyframes heroImgPan {
  from { transform: scale(1.04) translateX(0); }
  to   { transform: scale(1.04) translateX(-2%); }
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8,8,8,0.88) 0%,
    rgba(8,8,8,0.70) 50%,
    rgba(8,8,8,0.50) 100%
  );
}
/* Decorative radial glow */
.hero-glow {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(250,13,29,0.14) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
  animation: glowPulse 5s ease-in-out infinite alternate;
}
.hero-glow-2 {
  position: absolute;
  bottom: -300px;
  left: -150px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(250,13,29,0.06) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
  animation: glowPulse 7s ease-in-out infinite alternate-reverse;
}
@keyframes glowPulse {
  from { opacity: 0.7; transform: scale(1); }
  to   { opacity: 1;   transform: scale(1.1); }
}
/* Grid lines overlay no hero */
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(250,13,29,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(250,13,29,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 80% 30%, transparent 30%, black 100%);
  -webkit-mask-image: radial-gradient(ellipse at 80% 30%, transparent 30%, black 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}
.hero-content .eyebrow { margin-bottom: 20px; }
.hero-content h1 { margin-bottom: 24px; }
.hero-content .lead { margin-bottom: 40px; max-width: 620px; }
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
/* Scrolling badge */
.hero-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.proof-item {
  display: flex;
  flex-direction: column;
}
.proof-number {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}
.proof-label {
  font-size: 12px;
  color: var(--text-3);
  letter-spacing: 0.04em;
}
.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}
/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-3);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scrollCue 2s ease-in-out infinite;
}
.scroll-cue::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--red), transparent);
}
@keyframes scrollCue {
  0%, 100% { opacity: 0.4; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-50%) translateY(6px); }
}

/* ─── SEÇÃO: HONESTIDADE ─────────────────────────────── */
#honestidade {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
#honestidade .section-bg-img {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  max-width: 480px;
  height: 90%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  opacity: 0.22;
  filter: grayscale(100%);
  pointer-events: none;
  z-index: 0;
}
#honestidade .section-inner { position: relative; z-index: 1; }
.honest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 80px;
  align-items: start;
}
.honest-side h2 { margin-bottom: 20px; }
.honest-side p { margin-bottom: 16px; }
.honest-lists { display: flex; flex-direction: column; gap: 32px; }
.list-block h4 { margin-bottom: 16px; }
.list-block ul { display: flex; flex-direction: column; gap: 12px; }
.list-block li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.5;
}
.list-block li .icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.list-block.nope li .icon {
  background: rgba(255,255,255,0.05);
  color: var(--text-3);
}
.list-block.yes li .icon {
  background: rgba(250,13,29,0.15);
  color: var(--red);
}

/* ─── SEÇÃO: DOR ────────────────────────────────────── */
#dor {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
/* Fundo com grid sutil */
#dor::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}
#dor .section-inner { position: relative; z-index: 1; }
/* Glow no card ao hover */
.dor-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  background: radial-gradient(circle at 50% 0%, rgba(250,13,29,0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition);
}
.dor-card { position: relative; overflow: hidden; }
.dor-card:hover::before { opacity: 1; }
.dor-header { text-align: center; margin-bottom: 72px; }
.dor-header .eyebrow { margin-bottom: 16px; }
.dor-header h2 { margin-bottom: 16px; }
.dor-header .lead { max-width: 620px; margin: 0 auto; }
.dor-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.dor-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.dor-card:hover {
  border-color: var(--red);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(250,13,29,0.12);
}
.dor-card-number {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  color: rgba(250,13,29,0.15);
  line-height: 1;
  margin-bottom: 20px;
  transition: color var(--transition);
}
.dor-card:hover .dor-card-number { color: var(--red); }
.dor-card h3 { margin-bottom: 12px; font-size: 20px; }
.dor-card p { font-size: 15px; color: var(--text-2); line-height: 1.7; }

/* ─── SEÇÃO: COMO FUNCIONA ───────────────────────────── */
#como-funciona {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
#como-funciona .section-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  filter: grayscale(100%);
  pointer-events: none;
  z-index: 0;
}
#como-funciona .section-inner { position: relative; z-index: 1; }
/* Orbe decorativo */
#como-funciona .orb {
  --orb-duration: 14s;
  --orb-tx: 40px;
  --orb-ty: -30px;
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
  background: radial-gradient(circle, rgba(250,13,29,0.08) 0%, transparent 70%);
  z-index: 0;
}
.cf-header { text-align: center; margin-bottom: 72px; }
.cf-header .eyebrow { margin-bottom: 16px; }
.cf-header h2 { margin-bottom: 16px; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  position: relative;
}
/* Linha conectora */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: linear-gradient(90deg, var(--border), var(--red), var(--border));
  z-index: 0;
}
.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.step-dot {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 24px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  flex-shrink: 0;
}
.step-item:hover .step-dot {
  border-color: var(--red);
  box-shadow: 0 0 0 8px var(--red-glow);
  transform: scale(1.1);
}
.step-item h3 { font-size: 17px; margin-bottom: 10px; }
.step-item p { font-size: 14px; color: var(--text-2); line-height: 1.6; }

/* ─── Linha animada na base do step-item ─────────────── */
.step-item::after {
  content: '';
  display: block;
  width: 80%;
  height: 2px;
  margin-top: 20px;
  border-radius: 2px;
  position: relative;
  overflow: visible;
  animation: stepLineCharge 2.8s ease-in-out infinite;
  animation-delay: var(--step-delay, 0s);
}
@keyframes stepLineCharge {
  0%   { background: linear-gradient(90deg, transparent 0%, transparent 40%, rgba(250,13,29,0.12) 50%, transparent 60%, transparent 100%);
         box-shadow: none; }
  35%  { background: linear-gradient(90deg, transparent 0%, rgba(250,13,29,0.35) 25%, rgba(250,13,29,0.7) 50%, rgba(250,13,29,0.35) 75%, transparent 100%);
         box-shadow: 0 0 6px 1px rgba(250,13,29,0.2); }
  55%  { background: linear-gradient(90deg, transparent 0%, rgba(250,13,29,0.5) 20%, #ff2233 50%, rgba(250,13,29,0.5) 80%, transparent 100%);
         box-shadow: 0 0 12px 3px rgba(250,13,29,0.45), 0 0 2px 1px #fff3; }
  75%  { background: linear-gradient(90deg, transparent 0%, rgba(250,13,29,0.35) 25%, rgba(250,13,29,0.7) 50%, rgba(250,13,29,0.35) 75%, transparent 100%);
         box-shadow: 0 0 6px 1px rgba(250,13,29,0.2); }
  100% { background: linear-gradient(90deg, transparent 0%, transparent 40%, rgba(250,13,29,0.12) 50%, transparent 60%, transparent 100%);
         box-shadow: none; }
}


/* ─── SEÇÃO: RESULTADOS / PORTFÓLIO ─────────────────── */
#portfolio {
  background: var(--bg);
  position: relative;
}
/* Linha brilhante no topo da seção */
#portfolio::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0.5;
}
.portfolio-header { text-align: center; margin-bottom: 72px; }
.portfolio-header .eyebrow { margin-bottom: 16px; }
.portfolio-header h2 { margin-bottom: 16px; }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.portfolio-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 340px;
  display: flex;
  align-items: flex-end;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  background: var(--bg-2);
}
.portfolio-card:hover {
  border-color: var(--red);
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
}
.portfolio-iframe {
  position: absolute;
  top: 0; left: 0;
  width: 400%;
  height: 400%;
  transform: scale(0.25);
  transform-origin: top left;
  pointer-events: none;
  border: none;
  opacity: 0.6;
  z-index: 0;
}
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.98) 0%, rgba(8,8,8,0.5) 40%, transparent 70%);
  z-index: 1;
  transition: opacity var(--transition);
}
.portfolio-info {
  position: relative;
  z-index: 2;
  padding: 28px;
  width: 100%;
}
.portfolio-tag {
  font-size: 11px;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
  display: block;
}
.portfolio-info h3 { font-size: 22px; margin-bottom: 8px; }
.portfolio-info p {
  font-size: 13px;
  color: var(--text-2);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition);
}
.portfolio-card:hover .portfolio-info p {
  opacity: 1;
  transform: translateY(0);
}
.portfolio-link-icon {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  font-size: 14px;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity var(--transition), transform var(--transition);
}
.portfolio-card:hover .portfolio-link-icon {
  opacity: 1;
  transform: scale(1);
}

/* ─── SEÇÃO: DEPOIMENTOS ─────────────────────────────── */
#depoimentos {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
#depoimentos .section-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  filter: grayscale(100%) blur(2px);
  pointer-events: none;
  z-index: 0;
}
#depoimentos .section-inner { position: relative; z-index: 1; }
/* Brilho no quote mark */
.depo-card::before {
  content: '\201C';
  position: absolute;
  top: 12px;
  right: 20px;
  font-size: 100px;
  line-height: 1;
  font-family: var(--font-head);
  color: rgba(250,13,29,0.06);
  pointer-events: none;
  transition: color var(--transition);
}
.depo-card { position: relative; overflow: hidden; }
.depo-card:hover::before { color: rgba(250,13,29,0.1); }
.depo-header { text-align: center; margin-bottom: 72px; }
.depo-header .eyebrow { margin-bottom: 16px; }
.depo-header h2 { margin-bottom: 16px; }
.depo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.depo-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color var(--transition), transform var(--transition);
}
.depo-card:hover {
  border-color: rgba(250,13,29,0.4);
  transform: translateY(-4px);
}
.depo-stars {
  display: flex;
  gap: 3px;
  color: var(--red);
  font-size: 16px;
}
.depo-text {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.75;
  flex-grow: 1;
  font-style: italic;
}
.depo-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.depo-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(250,13,29,0.15);
  border: 1px solid var(--border-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16px;
  color: var(--red);
  flex-shrink: 0;
}
.depo-name {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-1);
}
.depo-role {
  font-size: 11px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}

/* ─── SEÇÃO: PLANOS ──────────────────────────────────── */
#planos {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
#planos .section-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.16;
  filter: grayscale(100%);
  pointer-events: none;
  z-index: 0;
  object-position: center 30%;
}
#planos .section-inner { position: relative; z-index: 1; }
/* Brilho destaque do card */
.plano-card.destaque::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  animation: shimmer 2.5s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { opacity: 0.6; transform: scaleX(0.7); }
  50%       { opacity: 1;   transform: scaleX(1); }
}
.planos-header { text-align: center; margin-bottom: 72px; }
.planos-header .eyebrow { margin-bottom: 16px; }
.planos-header h2 { margin-bottom: 16px; }
.planos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.plano-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.plano-card:hover {
  border-color: var(--border-red);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(250,13,29,0.08);
}
.plano-card.destaque {
  border-color: var(--red);
  background: linear-gradient(145deg, rgba(250,13,29,0.06) 0%, rgba(8,8,8,0) 100%);
  box-shadow: 0 0 0 1px var(--red), 0 24px 64px rgba(250,13,29,0.15);
  transform: scale(1.03);
  z-index: 2;
}
.plano-card.destaque:hover {
  transform: scale(1.03) translateY(-4px);
}
.plano-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.plano-eyebrow {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 12px;
}
.plano-card h3 { font-size: 22px; margin-bottom: 8px; }
.plano-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 24px;
  min-height: 60px;
}
.plano-divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin-bottom: 24px;
}
.plano-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex-grow: 1;
}
.plano-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.5;
}
.plano-features li::before {
  content: '✓';
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.plano-cta { width: 100%; justify-content: center; }

/* ─── SEÇÃO: FAQ ─────────────────────────────────────── */
#faq {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
#faq .orb {
  --orb-duration: 18s;
  --orb-tx: -20px;
  --orb-ty: 30px;
  width: 350px;
  height: 350px;
  bottom: -80px;
  left: -80px;
  background: radial-gradient(circle, rgba(250,13,29,0.06) 0%, transparent 70%);
  z-index: 0;
}
#faq .section-inner { position: relative; z-index: 1; }
.faq-header { text-align: center; margin-bottom: 72px; }
.faq-header .eyebrow { margin-bottom: 16px; }
.faq-header h2 { margin-bottom: 16px; }
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  color: var(--text-1);
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--red); }
.faq-question.active { color: var(--red); }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  color: var(--text-3);
  transition: all var(--transition);
  line-height: 1;
}
.faq-question.active .faq-icon {
  border-color: var(--red);
  color: var(--red);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease-out), padding 0.45s var(--ease-out);
}
.faq-answer p {
  padding-bottom: 24px;
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.75;
}

/* ─── SEÇÃO: CTA FINAL ───────────────────────────────── */
#cta-final {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
#cta-final .section-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  filter: grayscale(100%) blur(1px);
  pointer-events: none;
  z-index: 0;
}
/* Linha brilhante animada na CTA box */
.cta-box::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  animation: shimmer 3s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.cta-box::after {
  content: '';
  position: absolute;
  bottom: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(250,13,29,0.3), transparent);
  pointer-events: none;
  z-index: 0;
}
.cta-glow-l {
  position: absolute;
  top: 50%;
  left: -200px;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(250,13,29,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-glow-r {
  position: absolute;
  top: 50%;
  right: -200px;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(250,13,29,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-box {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  padding: 80px 40px;
  border: 1px solid var(--border-red);
  border-radius: var(--radius-lg);
  background: rgba(250,13,29,0.03);
  backdrop-filter: blur(8px);
  overflow: hidden;
}
.cta-box .eyebrow { margin-bottom: 20px; position: relative; z-index: 2; }
.cta-box h2 { margin-bottom: 16px; position: relative; z-index: 2; }
.cta-box .lead { margin-bottom: 40px; position: relative; z-index: 2; }
.cta-box .btn-primary {
  font-size: 15px;
  padding: 18px 48px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
  white-space: normal;
  word-break: break-word;
}

/* ─── FOOTER ─────────────────────────────────────────── */
footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 60px 24px 40px;
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.footer-logo {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.06em;
}
.footer-logo span { color: var(--red); }
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-size: 14px;
  color: var(--text-2);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--red); }
.footer-copy {
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

/* ─── DIVISORES ──────────────────────────────────────── */
.divider {
  width: 120px;
  height: 3px;
  margin: 20px 0;
  border-radius: 2px;
  position: relative;
  overflow: visible;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(250,13,29,0.3) 20%,
    var(--red) 50%,
    rgba(250,13,29,0.3) 80%,
    transparent 100%
  );
  animation: dividerCharge 2.4s ease-in-out infinite;
}
.divider::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 4px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(250,13,29,0.0) 20%,
    rgba(250,13,29,0.9) 50%,
    rgba(250,13,29,0.0) 80%,
    transparent 100%
  );
  filter: blur(6px);
  animation: dividerGlow 2.4s ease-in-out infinite;
}
.divider::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 8px 4px var(--red), 0 0 20px 8px rgba(250,13,29,0.5);
  animation: dividerCore 2.4s ease-in-out infinite;
}
@keyframes dividerCharge {
  0%   { background-size: 0% 100%; opacity: 0.4;
         background: linear-gradient(90deg, transparent 0%, transparent 45%, rgba(250,13,29,0.15) 50%, transparent 55%, transparent 100%); }
  40%  { background: linear-gradient(90deg, transparent 0%, rgba(250,13,29,0.4) 30%, var(--red) 50%, rgba(250,13,29,0.4) 70%, transparent 100%); opacity: 0.8; }
  60%  { background: linear-gradient(90deg, transparent 0%, rgba(250,13,29,0.6) 25%, #ff3344 50%, rgba(250,13,29,0.6) 75%, transparent 100%); opacity: 1; }
  80%  { background: linear-gradient(90deg, transparent 0%, rgba(250,13,29,0.4) 30%, var(--red) 50%, rgba(250,13,29,0.4) 70%, transparent 100%); opacity: 0.8; }
  100% { background: linear-gradient(90deg, transparent 0%, transparent 45%, rgba(250,13,29,0.15) 50%, transparent 55%, transparent 100%); opacity: 0.4; }
}
@keyframes dividerGlow {
  0%   { opacity: 0; filter: blur(2px); }
  40%  { opacity: 0.5; filter: blur(5px); }
  60%  { opacity: 1; filter: blur(8px); }
  80%  { opacity: 0.5; filter: blur(5px); }
  100% { opacity: 0; filter: blur(2px); }
}
@keyframes dividerCore {
  0%   { opacity: 0; transform: translate(-50%, -50%) scale(0.3); }
  40%  { opacity: 0.6; transform: translate(-50%, -50%) scale(0.7); }
  60%  { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  80%  { opacity: 0.6; transform: translate(-50%, -50%) scale(0.7); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(0.3); }
}
.divider-center { margin-left: auto; margin-right: auto; }


/* ─── ANIMAÇÕES SCROLL-TRIGGERED ────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ─── CONTADOR ANIMADO ───────────────────────────────── */
.proof-number[data-target] {
  display: inline-block;
}

/* ─── LINHA BRILHANTE (usada em vários lugares) ──────── */
@keyframes lineShine {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

/* ─── STEP DOT — pulse ao entrar na tela ────────────── */
.step-item.visible .step-dot {
  animation: dotPulse 0.6s var(--ease-out) both;
  animation-delay: var(--step-delay, 0s);
}
@keyframes dotPulse {
  0%   { transform: scale(0.5); opacity: 0; }
  60%  { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(1); }
}

/* ─── MOBILE MENU ────────────────────────────────────── */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-1);
  transition: all var(--transition);
  border-radius: 2px;
}
.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── RESPONSIVO ────────────────────────────────────── */
@media (max-width: 1024px) {
  .dor-cards { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .steps-grid::before { display: none; }
  .planos-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .plano-card.destaque { transform: scale(1); }
  .plano-card.destaque:hover { transform: translateY(-4px); }
  .honest-grid { grid-template-columns: 1fr; gap: 40px; }
  .portfolio-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }
  #header-cta { display: none; }
  .nav-links-desktop { display: none; }
  .menu-toggle { display: flex; z-index: 10000; position: relative; }
  #site-header { background: rgba(8,8,8,0.95); backdrop-filter: blur(20px); }
  .dor-cards { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 32px; }
  .depo-grid { grid-template-columns: 1fr; }
  .hero-proof { flex-direction: row; }
  .proof-divider { display: none; }
  .cta-box { padding: 48px 24px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  #hero { padding: 120px 0 80px; }
  .hero-proof { flex-direction: column; gap: 20px; }
  .portfolio-card { height: 260px; }
}
