/* ==========================================
   LEAD CONTROL — Design System v2
   Top Web Marketing Digital
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
  --bg:         #0a0a0a;
  --bg-surface: #111111;
  --bg-card:    #161616;
  --bg-card-2:  #1a1a1a;
  --border:     rgba(255,255,255,0.06);
  --border-md:  rgba(255,255,255,0.11);

  --cyan:       #00e5c0;
  --cyan-2:     #00c8ff;
  --cyan-dim:   rgba(0,229,192,0.10);
  --cyan-glow:  rgba(0,229,192,0.28);
  --red-dim:    rgba(255,70,70,0.08);
  --red-border: rgba(255,70,70,0.18);

  --t1: #ffffff;
  --t2: rgba(255,255,255,0.55);
  --t3: rgba(255,255,255,0.28);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: all 0.22s cubic-bezier(0.4,0,0.2,1);
  --r-sm: 0.5rem; --r-md: 0.875rem; --r-lg: 1.25rem; --r-xl: 1.75rem; --r-full: 9999px;
  --max-w: 1160px; --px: 1.5rem; --sy: 6rem;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--t1);
  line-height: 1.6;
  overflow-x: hidden;
}

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--px); }
.section    { padding: var(--sy) 0; }
.divider    { width: 100%; height: 1px; background: linear-gradient(90deg, transparent, var(--border-md), transparent); }

/* TYPOGRAPHY */
.gradient-text {
  background: linear-gradient(135deg, var(--cyan-2) 0%, var(--cyan) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.gradient-text-warning {
  background: linear-gradient(135deg, #ffdf00, #ff9d00, #ff4b5c);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section-tag {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--cyan); background: var(--cyan-dim);
  border: 1px solid rgba(0,229,192,.2); border-radius: var(--r-full);
  padding: .3rem .85rem; margin-bottom: 1.25rem;
}
.section-eyebrow { text-align: center; }
.section-title {
  font-size: clamp(2rem,4.5vw,3.2rem); font-weight: 900;
  line-height: 1.1; letter-spacing: -.03em; color: var(--t1); text-align: center;
}
.section-sub {
  font-size: 1.15rem; color: var(--t2); text-align: center;
  max-width: 540px; margin: 1rem auto 0; line-height: 1.75;
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font); font-size: 1.05rem; font-weight: 700;
  border-radius: var(--r-full); padding: .9rem 2rem;
  cursor: pointer; text-decoration: none; border: none;
  transition: var(--ease); white-space: nowrap; position: relative; overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, var(--cyan-2), var(--cyan));
  color: #050505;
  box-shadow: 0 0 28px var(--cyan-glow), 0 4px 16px rgba(0,200,255,.15);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 48px rgba(0,229,192,.5), 0 8px 28px rgba(0,200,255,.25); }
.btn-primary:active { transform: translateY(0); }
.btn-lg { font-size: 1.2rem; padding: 1.1rem 2.6rem; }
.btn-ghost {
  background: transparent; color: var(--t2);
  font-size: .95rem; font-weight: 500;
  text-decoration: underline; text-underline-offset: 3px; padding: 0;
}
.btn-ghost:hover { color: var(--t1); }
.btn-nav {
  background: linear-gradient(135deg, var(--cyan-2), var(--cyan));
  color: #050505; font-size: .95rem;
  padding: .55rem 1.4rem; border-radius: var(--r-full);
}
.btn-nav:hover { transform: translateY(-1px); box-shadow: 0 0 20px var(--cyan-glow); }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.25rem var(--px);
  display: flex; align-items: center; justify-content: space-between;
  transition: var(--ease);
}
.navbar.scrolled {
  background: rgba(10,10,10,.88); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border); padding: .85rem var(--px);
}
.nav-logo { display: flex; align-items: center; gap: .6rem; text-decoration: none; }
.nav-logo-mark {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--cyan-2), var(--cyan));
  border-radius: 9px; display: flex; align-items: center; justify-content: center;
}
.nav-logo-text { font-size: 1.1rem; font-weight: 800; color: var(--t1); letter-spacing: -.02em; }
.nav-logo-text span { color: var(--cyan); }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: .95rem; font-weight: 500; color: var(--t2); text-decoration: none; transition: color .2s; }
.nav-links a:hover { color: var(--t1); }
.nav-right { display: flex; align-items: center; gap: 1.5rem; }

/* ── HERO ── */
.hero {
  min-height: 100svh; display: flex; align-items: center;
  padding: 8rem var(--px) 5rem;
  position: relative; overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 60% 0%, rgba(0,229,192,0.1) 0%, transparent 70%),
              linear-gradient(to bottom, rgba(10,10,10,0.6), var(--bg)),
              url('hero-lc.png') no-repeat center center / cover;
}
.hero-inner {
  display: grid; grid-template-columns: 52fr 48fr;
  gap: 4rem; align-items: center;
  max-width: var(--max-w); width: 100%; margin: 0 auto;
  position: relative; z-index: 1;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--cyan); background: var(--cyan-dim);
  border: 1px solid rgba(0,229,192,.22); border-radius: var(--r-full);
  padding: .28rem .8rem; margin-bottom: 1.5rem;
}
.hero-tag-dot { width: 5px; height: 5px; background: var(--cyan); border-radius: 50%; animation: blink 2s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1}50%{opacity:.3} }

.hero h1 {
  font-size: clamp(2.6rem,5vw,4rem); font-weight: 900;
  line-height: 1.08; letter-spacing: -.04em; margin-bottom: 1.25rem;
}
.hero-sub {
  font-size: 1.15rem; color: var(--t2); line-height: 1.75;
  max-width: 440px; margin-bottom: 2rem;
}
.hero-bullets { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 2.25rem; }
.hero-bullet { display: flex; align-items: flex-start; gap: .6rem; font-size: 1rem; color: var(--t1); }
.hero-bullet-icon { color: var(--cyan); font-size: 1rem; margin-top: .1rem; flex-shrink: 0; }
.hero-actions { display: flex; flex-direction: column; align-items: flex-start; gap: .85rem; }

/* Hero Video */
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-video-wrap {
  position: relative; width: 100%; max-width: 500px; margin: 0 auto;
  padding: 3px;
  background: rgba(0, 229, 192, 0.05);
  border-radius: 20px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hero-video-wrap::before {
  content: '';
  position: absolute;
  width: 150%;
  height: 150%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    transparent 280deg,
    var(--cyan) 310deg,
    var(--cyan-2) 340deg,
    transparent 360deg
  );
  animation: rotate-glow 4s linear infinite;
  z-index: 0;
}

@keyframes rotate-glow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-video {
  width: 100%; height: auto; display: block;
  border-radius: 17px;
  position: relative;
  z-index: 1;
  background: var(--bg);
  box-shadow: 0 0 60px rgba(0,229,192,.2), 0 30px 80px rgba(0,0,0,.6);
  object-fit: cover;
}
.hero-video-label {
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  background: var(--bg-card); border: 1px solid rgba(0,229,192,.3);
  border-radius: var(--r-full); padding: .4rem 1rem;
  font-size: .85rem; font-weight: 700; color: var(--cyan);
  box-shadow: 0 4px 16px rgba(0,0,0,.4);
  animation: float-center 3s ease-in-out infinite;
  z-index: 10;
  white-space: nowrap;
}
@keyframes float-center {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-5px); }
}

/* ── PROBLEMA ── */
.problem-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.25rem; margin-top: 3.5rem;
}
.problem-card {
  background: var(--bg-surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 2rem 1.6rem;
  transition: var(--ease); position: relative; overflow: hidden;
}
.problem-card::after {
  content:''; position:absolute; top:0; left:0; right:0; height:1px;
  background: linear-gradient(90deg, transparent, rgba(255,70,70,.5), transparent);
}
.problem-card:hover { border-color: rgba(255,70,70,.25); transform: translateY(-4px); background: rgba(255,70,70,.03); }
.problem-icon { margin-bottom: 1.25rem; display: flex; align-items: center; }
.icon-problem { color: #ff4b5c; stroke-width: 1.5; }
.problem-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: .5rem; }
.problem-card p  { font-size: .97rem; color: var(--t2); line-height: 1.65; }

.transition-line {
  text-align: center; margin-top: 4rem;
  font-size: clamp(1.5rem,3.5vw,2.5rem); font-weight: 900;
  letter-spacing: -.03em; line-height: 1.2;
}
.transition-line em { font-style: normal; color: var(--t2); }

/* ── COMO FUNCIONA (TRIAGEM) ── */
.triagem-track {
  display: grid; grid-template-columns: repeat(5,1fr);
  gap: 1rem; margin-top: 4.5rem; position: relative;
  background: radial-gradient(circle at 50% 44px, rgba(0,229,192,0.08) 0%, transparent 70%);
  padding: 2rem 0;
}
.triagem-track::before {
  content:''; position:absolute;
  top: 76px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,229,192,0.3), rgba(0,229,192,0.3), transparent);
  z-index: 0;
}
.triagem-step { text-align: center; position: relative; z-index: 1; padding: 0 .5rem; }

/* Estado padrão: translúcido, escurecido */
.triagem-step-circle {
  width: 88px; height: 88px; border-radius: 50%;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem; font-size: 1.9rem;
  position: relative;
  filter: grayscale(0.1) brightness(0.9) opacity(0.9);
  box-shadow: none;
  transition: var(--ease);
  animation: triagem-glow 10s ease-in-out infinite;
}

.triagem-step:hover .triagem-step-circle {
  filter: grayscale(0) brightness(1.2) opacity(1);
  transform: scale(1.08);
  background: var(--step-glow);
  border-color: var(--step-color);
  box-shadow: 0 0 30px var(--step-glow);
}

/* Delays sequenciais — um por step (Ciclo de 10s, Snappy) */
.triagem-step:nth-child(1) .triagem-step-circle { animation-delay: 0s; }
.triagem-step:nth-child(2) .triagem-step-circle { animation-delay: 2s; }
.triagem-step:nth-child(3) .triagem-step-circle { animation-delay: 4s; }
.triagem-step:nth-child(4) .triagem-step-circle { animation-delay: 6s; }
.triagem-step:nth-child(5) .triagem-step-circle { animation-delay: 8s; }

/* Animação principal: acende (glow forte) → volta pro base (90%) */
@keyframes triagem-glow {
  0%, 15% {
    filter: grayscale(0) brightness(1.5) opacity(1);
    background: var(--step-glow);
    border-color: var(--step-color);
    box-shadow:
      0 0 45px var(--step-color),
      0 0 90px var(--step-glow),
      inset 0 0 35px var(--step-glow);
    transform: scale(1.1);
  }
  20%, 100% {
    filter: grayscale(0.1) brightness(0.9) opacity(0.9);
    background: rgba(255,255,255,0.03);
    border-color: rgba(255,255,255,0.08);
    box-shadow: none;
    transform: scale(1);
  }
}

/* Cores do Google para cada Step */
.triagem-step:nth-child(1) { --step-color: #4285F4; --step-glow: rgba(66, 133, 244, 0.6); }
.triagem-step:nth-child(2) { --step-color: #EA4335; --step-glow: rgba(234, 67, 53, 0.6); }
.triagem-step:nth-child(3) { --step-color: #FBBC05; --step-glow: rgba(251, 188, 5, 0.6); }
.triagem-step:nth-child(4) { --step-color: #4285F4; --step-glow: rgba(66, 133, 244, 0.6); }
.triagem-step:nth-child(5) { --step-color: #34A853; --step-glow: rgba(52, 168, 83, 0.6); }

.triagem-step-n {
  position: absolute; top: -5px; right: -5px;
  width: 26px; height: 26px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%; font-size: 12px; font-weight: 800; color: var(--t2);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.4);
}
.triagem-step h3, .triagem-step p {
  transition: var(--ease);
  color: #fff;
  opacity: 1; /* Sempre acesos */
}

.triagem-step:hover h3, .triagem-step:hover p {
  color: #fff;
  opacity: 1;
}

.triagem-step h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: .4rem; transition: color .3s; }
.triagem-step p  { font-size: .88rem; line-height: 1.6; transition: color .3s; }

.triagem-note { text-align: center; margin-top: 2.5rem; font-size: .95rem; color: var(--t3); font-style: italic; margin-bottom: 2.5rem; }
.triagem-cta { display: flex; justify-content: center; }

.btn-pulse {
  animation: btn-glow-pulse 2s ease-in-out infinite;
  border: 1px solid rgba(0,229,192,0.4);
}

@keyframes btn-glow-pulse {
  0% { box-shadow: 0 0 15px rgba(0,229,192,0.4), 0 0 0 0 rgba(0,229,192,0.2); }
  50% { box-shadow: 0 0 45px rgba(0,229,192,0.9), 0 0 0 15px rgba(0,229,192,0); }
  100% { box-shadow: 0 0 15px rgba(0,229,192,0.4), 0 0 0 0 rgba(0,229,192,0); }
}

.step-icon { color: var(--step-color); flex-shrink: 0; transition: color .5s; }

/* ── INTEGRAÇÕES ── */
.integrations-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 1.25rem; margin-top: 3.5rem;
}
.integration-card {
  background: var(--bg-surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 2rem;
  display: flex; gap: 1.25rem; align-items: flex-start;
  transition: var(--ease);
}
.integration-card:hover { border-color: rgba(0,229,192,.2); background: rgba(0,229,192,.02); transform: translateY(-3px); }
.integration-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(0,229,192,0.06); border: 1px solid rgba(0,229,192,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  backdrop-filter: blur(4px);
}
.icon-int { color: var(--cyan); }
.integration-card h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: .4rem; }
.integration-card p  { font-size: .95rem; color: var(--t2); line-height: 1.6; }

/* ── RESULTADOS (ANTES/DEPOIS) ── */
#resultados { padding-top: 3rem; padding-bottom: 3rem; }
.results-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.25rem; margin-top: 2rem;
}
.results-col {
  border-radius: var(--r-lg); padding: 1.5rem;
  display: flex; flex-direction: column; gap: .75rem;
}
.results-col-before {
  background: var(--red-dim); border: 1px solid var(--red-border);
}
.results-col-after {
  background: rgba(0,229,192,.05); border: 1px solid rgba(0,229,192,.15);
}
.results-col-label {
  font-size: .75rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: .5rem;
}
.results-col-before .results-col-label { color: #ff6464; }
.results-col-after  .results-col-label { color: var(--cyan); }
.result-item { display: flex; align-items: flex-start; gap: .6rem; font-size: 0.95rem; line-height: 1.45; }

/* ── NÚMEROS / PROVA SOCIAL ── */
.stats-section { 
  background: var(--bg-surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); 
  padding-top: 2rem !important; padding-bottom: 2rem !important;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2rem; margin-top: 0;
}
.stat-card { text-align: center; padding: 1.5rem 1rem; position: relative; display: flex; flex-direction: column; align-items: center; }
.stat-icon { color: var(--cyan); margin-bottom: 0.75rem; opacity: 0.8; }
.stat-card + .stat-card::before {
  content:''; position:absolute; left:0; top:20%; bottom:20%;
  width:1px; background: var(--border-md);
}
.stat-num {
  font-size: clamp(2.5rem,5vw,3.8rem); font-weight: 900;
  letter-spacing: -.04em; line-height: 1;
  background: linear-gradient(135deg, var(--cyan-2), var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-desc { font-size: .97rem; color: var(--t2); margin-top: .6rem; line-height: 1.55; max-width: 200px; margin-left: auto; margin-right: auto; }
.stats-note { text-align: center; font-size: .85rem; color: var(--t3); margin-top: 1rem; }

/* ── CTA INTERMEDIÁRIO ── */
.mid-cta {
  padding: 5rem 0; text-align: center;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(0,200,255,.06) 0%, transparent 70%);
}
.mid-cta-box {
  max-width: 640px; margin: 0 auto;
  background: linear-gradient(135deg, rgba(0,200,255,.07), rgba(0,229,192,.06));
  border: 1px solid rgba(0,229,192,.18);
  border-radius: var(--r-xl); padding: 4rem 2.5rem;
}
.mid-cta-box h2 {
  font-size: clamp(1.8rem,4vw,2.6rem); font-weight: 900;
  letter-spacing: -.03em; line-height: 1.15; margin-bottom: .85rem;
}
.mid-cta-box p { font-size: 1.1rem; color: var(--t2); margin-bottom: 2rem; }
.mid-cta-note { font-size: .85rem; color: var(--t3); margin-top: 1rem; }

/* ── FAQ ACCORDION ── */
.faq-list { max-width: 720px; margin: 3rem auto 0; display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  background: var(--bg-surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden; transition: border-color .2s;
}
.faq-item.open { border-color: rgba(0,229,192,.22); }
.faq-btn {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 1.35rem 1.5rem; display: flex; justify-content: space-between; align-items: center;
  text-align: left; gap: 1rem;
}
.faq-q { font-size: 1.05rem; font-weight: 700; color: var(--t1); }
.faq-icon {
  width: 22px; height: 22px; border-radius: 50%;
  border: 1.5px solid var(--border-md); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--t2); font-size: .85rem; transition: transform .3s, border-color .2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--cyan); color: var(--cyan); }
.faq-body {
  max-height: 0; overflow: hidden;
  transition: max-height .38s cubic-bezier(0.4,0,0.2,1), padding .3s;
  padding: 0 1.5rem;
}
.faq-body.open { max-height: 400px; padding-bottom: 1.5rem; }
.faq-a { font-size: .97rem; color: var(--t2); line-height: 1.75; }

/* ── CTA FINAL ── */
.final-cta {
  text-align: center; padding: 8rem var(--px) 5rem;
  position: relative; overflow: hidden;
}
.final-cta::before {
  content:''; position:absolute; bottom:0; left:50%; transform:translateX(-50%);
  width:700px; height:500px;
  background: radial-gradient(ellipse, rgba(0,229,192,.09) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta h2 {
  font-size: clamp(2.4rem,5.5vw,4rem); font-weight: 900;
  letter-spacing: -.04em; line-height: 1.1; margin-bottom: 1.25rem;
  position: relative; z-index: 1;
}
.final-cta .sub {
  font-size: 1.15rem; color: var(--t2);
  max-width: 480px; margin: 0 auto 2.5rem; line-height: 1.7;
  position: relative; z-index: 1;
}
.final-cta .btn { position: relative; z-index: 1; }
.final-note {
  margin-top: 2.5rem; font-size: .88rem; color: var(--t3);
  line-height: 1.7; position: relative; z-index: 1;
}

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--border); padding: 2rem var(--px);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-brand { display: flex; align-items: center; gap: .5rem; text-decoration: none; }
.footer-brand-text { font-size: 1rem; font-weight: 800; color: var(--t1); letter-spacing: -.01em; }
.footer-brand-text span { color: var(--cyan); }
.footer-copy { font-size: .85rem; color: var(--t3); }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { font-size: .88rem; color: var(--t3); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--t1); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  :root { --sy: 4rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { order: -1; }
  .hero h1 { font-size: 2.5rem; }
  .hero-video-wrap { max-width: 360px; }
  .problem-grid { grid-template-columns: 1fr; }
  .triagem-track {
    grid-template-columns: 1fr; gap: 1.5rem;
  }
  .triagem-track::before { display: none; }
  .integrations-grid, .results-grid, .stats-grid { grid-template-columns: 1fr; }
  .stat-card + .stat-card::before { display: none; }
  .nav-links { display: none; }
}
@media (max-width: 600px) {
  .hero { padding: 6.5rem var(--px) 4rem; }
  .btn-lg { width: 100%; justify-content: center; }
  .hero-actions { width: 100%; }
  .footer { flex-direction: column; align-items: center; text-align: center; }
  .mid-cta-box { padding: 2.5rem 1.25rem; }
  .final-cta { padding: 5rem var(--px) 4rem; }
}

/* RESPONSIVE UTILS */
.d-desktop { display: none; }
@media (min-width: 992px) { .d-desktop { display: inline; } }

/* ── MODAL OVERLAY WAVES ── */
#lc-triagem-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  background: rgba(5, 7, 15, 0.7);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

#lc-triagem-overlay::before,
#lc-triagem-overlay::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150vw;
  height: 150vw;
  min-width: 1000px;
  min-height: 1000px;
  background: linear-gradient(135deg, rgba(0, 229, 192, 0.4) 0%, rgba(0, 200, 255, 0.1) 100%);
  border-radius: 43%;
  transform: translate(-50%, -50%) rotate(0deg);
  animation: modal-waves 15s infinite linear;
  pointer-events: none;
  z-index: 1;
  filter: blur(8px);
}

#lc-triagem-overlay::after {
  width: 140vw;
  height: 140vw;
  background: linear-gradient(135deg, rgba(0, 229, 192, 0.25) 0%, transparent 100%);
  border-radius: 38%;
  animation-duration: 22s;
  animation-direction: reverse;
}

@keyframes modal-waves {
  0%   { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

#lc-triagem-iframe {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
}
