/* ==========================================================================
   CSS OTIMIZADO - FONTES E ANIMAÇÕES
   ========================================================================== */

/* ANTI-CLS - EVITA LAYOUT SHIFT */
html, body { overflow-x: hidden; }
img, video { max-width: 100%; height: auto; display: block; }



/* ---------- ANIMAÇÕES OTIMIZADAS (reduzidas) ---------- */
@keyframes bounce { 
  0%,100%{transform:translateY(0)} 
  50%{transform:translateY(-6px)} 
}

@keyframes pointDown { 
  0%,100%{transform:translateY(0)} 
  50%{transform:translateY(8px)} 
}

@keyframes pulse-dot {
  0%,100%{opacity:.45;transform:scale(1);}
  50%{opacity:1;transform:scale(1.35);}
}

@keyframes gentlePulse {
  0%,100% { 
    box-shadow: 
      0 0 20px rgba(168, 85, 247, 0.15),
      0 0 0 1px rgba(255, 255, 255, 0.05) inset; 
  }
  50% { 
    box-shadow: 
      0 0 25px rgba(168, 85, 247, 0.25),
      0 0 0 1px rgba(255, 255, 255, 0.08) inset; 
  }
}

@keyframes glowPulsePurple {
  0%,100%{
    text-shadow: 0 0 6px rgba(168,85,247,.55);
    filter: brightness(1);
  }
  50%{
    text-shadow: 0 0 10px rgba(168,85,247,.95);
    filter: brightness(1.12);
  }
}

@keyframes strokePulsePurple{
  0%,100%{
    -webkit-text-stroke: 2.2px rgba(214,141,255,.88);
    text-shadow: 0 0 0.7px rgba(214,141,255,.85);
  }
  50%{
    -webkit-text-stroke: 3.1px rgba(214,141,255,1);
    text-shadow: 0 0 1px rgba(214,141,255,1);
  }
}

@keyframes ctaIdleFloat {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-2px); }
}

/* ==========================================================================
   RESET GLOBAL PARA MÍDIA (Anti-CLS)
   ========================================================================== */
img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ==========================================================================
   UTILITÁRIOS (mantidos)
   ========================================================================== */
.emoji-bounce{display:inline-block; animation:bounce 1.6s infinite; }
.action-text{
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: .02em;
  font-size: .98rem;
  opacity: .95;
}
.benefit-divider{
  width:100%;
  height:1px;
  margin:14px 0 14px;
  opacity:.65;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.12),transparent);
}
.breathing-sides{ padding-inline: clamp(14px, 3vw, 28px); }

.text-highlight{
  color: #fff;
  font-weight: 800;
  text-shadow: 0 0 18px rgba(168,85,247,.18);
}

/* ==========================================================================
   IMPACT / LEAKS / SOLUTION (mantido)
   ========================================================================== */
.impact-container{
  text-align:center;
  margin:40px auto 30px;
  position:relative;
  padding:0 20px;
  max-width:800px;
}
.impact-headline{
  font-family:'Fraunces',serif;
  font-size:2rem;
  color:#fff;
  line-height:1.3;
  margin:0 auto 15px;
}
.danger-word{
  display:inline-block;
  font-family:'JetBrains Mono',monospace;
  color:rgba(248, 113, 113, 0.9);
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.5px;
  background:rgba(239, 68, 68, 0.08);
  border-radius:4px;
  padding:0 6px;
  margin:0 4px;
  vertical-align:middle;
}
.impact-warning-text{
  font-size:1.15rem;
  color:#d1d5db;
  line-height:1.5;
  max-width:700px;
  margin:0 auto 20px;
}
.impact-connector{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-weight:700;
  color:#fff;
  font-size:.95rem;
  text-transform:uppercase;
  letter-spacing:1px;
  padding:8px 16px;
  border-radius:50px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.1);
}
.impact-arrow{color:rgba(248, 113, 113, 0.9);animation:bounce 1.5s infinite;font-size:1.1em}

.leaks-container{
  text-align:left;
  max-width:800px;
  margin:25px auto 60px;
}
.leak-card{
  background:var(--bg-card);
  border:1px solid rgba(255, 255, 255, 0.07);
  border-radius:20px;
  padding:1.5rem;
  margin-bottom:25px;
  display:flex;
  gap:25px;
  align-items:flex-start;
  transition:all .3s ease;
  position:relative;
  overflow:hidden;
  box-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}
.leak-card:hover{
  transform:translateX(5px);
  border-color:rgba(168,85,247,.25);
  background:rgba(255,255,255,.04);
  box-shadow: 
    0 8px 24px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(168, 85, 247, 0.1) inset;
}
.leak-card:nth-child(2) {
  background: linear-gradient(145deg, rgba(255,255,255,.028) 0%, rgba(255,255,255,.010) 100%);
  margin-bottom: 35px;
}

.leak-card:nth-child(3) {
  background: linear-gradient(145deg, rgba(255,255,255,.038) 0%, rgba(255,255,255,.014) 100%);
  padding: 1.75rem;
  margin-bottom: 35px;
}
.leak-card::before{
  content:'';
  position:absolute;left:0;top:0;bottom:0;
  width:3px;
  background:linear-gradient(180deg,var(--primary-purple),transparent);
  opacity:.6;
}
.leak-icon-box{
  flex-shrink:0;
  width:48px;height:48px;
  background:rgba(168,85,247,.08);
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--primary-purple);
  border:1px solid rgba(168,85,247,.1);
}
.leak-icon-svg{width:24px;height:24px;stroke:currentColor;stroke-width:1.8;fill:none}
.leak-content{flex:1}
.leak-text{
  font-size:1.05rem;
  color:var(--text-body);
  line-height:1.6;
  margin:0;
  font-weight:400;
  max-width: 65ch;
}
.leak-text strong { font-weight: 600; }

/* Solution */
.solution-box{
  display:grid;
  grid-template-columns:1fr;
  gap:0;
  background:transparent;
  margin:80px 0;
  border-radius:24px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.07);
  box-shadow:0 0 30px rgba(0,0,0,.2);
  position:relative;
}
.solution-part{
  background:linear-gradient(180deg,rgba(20,20,25,.6) 0%,rgba(10,10,15,.8) 100%);
  padding:50px 30px;
  text-align:center;
  transition:background .3s ease;
  position:relative;
}
.solution-part:hover{
  background:linear-gradient(180deg,rgba(25,25,30,.8) 0%,rgba(15,15,20,.9) 100%);
}
.solution-part.part-green::before,
.solution-part.part-purple::before{
  content:'';
  position:absolute;top:0;left:0;right:0;
  height:1px;
}
.solution-part.part-green::before{
  background:linear-gradient(90deg,transparent,rgba(16,185,129,.6),transparent);
  box-shadow:0 0 15px rgba(16,185,129,.4);
}
.solution-part.part-purple::before{
  background:linear-gradient(90deg,transparent,rgba(168,85,247,.6),transparent);
  box-shadow:0 0 15px rgba(168,85,247,.4);
}
.sol-title{font-family:'Fraunces',serif;font-size:1.8rem;margin-bottom:15px;color:#fff}
.sol-highlight{display:inline-block;font-style:italic;font-weight:700;background:none}
.text-green{color:rgba(52, 211, 153, 0.9);text-shadow:0 0 25px rgba(16,185,129,.4)}
.text-purple{color:var(--primary-purple);text-shadow:0 0 25px rgba(168,85,247,.4)}
.solution-part p{font-size:1.05rem;color:var(--text-body);max-width:300px;margin:0 auto}

@media (min-width:768px){
  .solution-box{grid-template-columns:1fr 1fr}
  .solution-part:first-child{border-right:1px solid rgba(255,255,255,.1)}
}

/* ==========================================================================
   BOTÕES / CTA (mantido)
   ========================================================================== */
.cta-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  background:linear-gradient(135deg,#10b981 0%,#059669 100%);
  color:#fff;
  font-family:'Outfit',sans-serif;
  font-weight:800;
  text-decoration:none;
  padding:14px 24px;
  border-radius:14px;
  font-size:.98rem;
  box-shadow:0 10px 30px -10px rgba(16,185,129,.55);
  transition:transform .22s ease, box-shadow .22s ease, filter .22s ease;
  position:relative;
  letter-spacing:.2px;
  max-width:340px;
  text-align:center;
  line-height:1.25;
}
.cta-button:hover{
  transform:translateY(-2px);
  filter: brightness(1.04);
  box-shadow:0 18px 50px -14px rgba(16,185,129,.75);
}
.cta-button:active{transform:translateY(0) scale(.99)}

.whatsapp-icon-btn{
  width:22px;height:22px;
  fill:currentColor;
  flex-shrink:0;
}

.cta-button.secondary{
  background:rgba(168, 85, 247, 0.08);
  border:1px solid rgba(168, 85, 247, 0.6);
  color:#fff;
  padding:16px 40px;
  font-size:1rem;
  border-radius:999px;
  box-shadow: 
    0 0 20px rgba(168, 85, 247, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  animation: gentlePulse 3s infinite ease-in-out;
}
.cta-button.secondary:hover{
  background:rgba(168,85,247,.12);
  border-color:var(--primary-purple);
  animation: none;
  box-shadow: 0 0 30px rgba(168,85,247,.3), 0 0 0 1px rgba(255,255,255,.1) inset;
}

.mid-cta-container{margin:60px auto 100px;padding:0 20px;text-align:center}

.pulse-premium{ animation: none; }
.pulse-premium:hover{ transform: translateY(-2px); }

/* ==========================================================================
   STEPS (mantido)
   ========================================================================== */
#como-funciona{scroll-margin-top:100px}
#como-funciona h2{
  font-size:clamp(2.2rem,5vw,3.5rem);
  text-align:center;
  margin:80px 0 15px;
  color:#fff;
  font-weight:700;
  line-height:1.2;
  text-shadow:0 0 40px rgba(168,85,247,.3);
}
#como-funciona>p{
  text-align:center;
  color:var(--soft-purple);
  font-size:1.2rem;
  margin-bottom:70px;
  font-weight:500;
  letter-spacing:2px;
  text-transform:uppercase;
  opacity:.9;
}

.steps-container{display:grid;gap:60px;margin-top:50px;position:relative;padding-left:0}
.step-card{
  background:var(--bg-card);
  border:1px solid rgba(255, 255, 255, 0.07);
  padding:1.5rem;
  border-radius:24px;
  position:relative;
  z-index:1;
  transition:all .3s ease;
  backdrop-filter:blur(5px);
  box-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}
.step-card:hover{
  transform:translateY(-5px);
  background:var(--bg-card-hover);
  border-color:rgba(168,85,247,.3);
  box-shadow: 
    0 8px 24px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(168, 85, 247, 0.1) inset;
}
.step-card:nth-child(3),
.step-card:nth-child(4) {
  margin-top: 25px;
}
.step-card::before{
  content:'';
  position:absolute;
  left:50%;
  bottom:-50px;
  width:2px;height:50px;
  background:linear-gradient(180deg,rgba(168,85,247,.3),rgba(168,85,247,.1));
  transform:translateX(-50%);
  z-index:0;
}
.step-card:last-child::before{display:none}

/* Cores por step */
.step-card:nth-child(1){--accent-color:#34d399;border-color:rgba(52,211,153,.2)}
.step-card:nth-child(1) .highlight-word{color:#34d399;text-shadow:0 0 20px rgba(52,211,153,.2)}
.step-card:nth-child(1) .step-icon-wrapper{background:rgba(52,211,153,.1);color:#34d399;border-color:rgba(52,211,153,.2)}
.step-card:nth-child(1) .separator-gradient{background:linear-gradient(90deg,transparent,rgba(52,211,153,.4),transparent)}

.step-card:nth-child(2){--accent-color:#c4b5fd;border-color:rgba(196,181,253,.2)}
.step-card:nth-child(2) .highlight-word{color:#c4b5fd}
.step-card:nth-child(2) .step-icon-wrapper{background:rgba(196,181,253,.08);color:#c4b5fd;border-color:rgba(196,181,253,.15)}
.step-card:nth-child(2) .separator-gradient{background:linear-gradient(90deg,transparent,rgba(196,181,253,.4),transparent)}

.step-card:nth-child(3){--accent-color:#a78bfa;border-color:rgba(167,139,250,.2)}
.step-card:nth-child(3) .highlight-word{color:#a78bfa}
.step-card:nth-child(3) .step-icon-wrapper{background:rgba(167,139,250,.08);color:#a78bfa;border-color:rgba(167,139,250,.15)}
.step-card:nth-child(3) .separator-gradient{background:linear-gradient(90deg,transparent,rgba(167,139,250,.4),transparent)}

.step-card:nth-child(4){--accent-color:#db2777;border-color:rgba(219,39,119,.2)}
.step-card:nth-child(4) .highlight-word{color:#f472b6;text-shadow:0 0 20px rgba(219,39,119,.2)}
.step-card:nth-child(4) .step-icon-wrapper{background:rgba(219,39,119,.1);color:#f472b6;border-color:rgba(219,39,119,.2)}
.step-card:nth-child(4) .separator-gradient{background:linear-gradient(90deg,transparent,rgba(219,39,119,.4),transparent)}

.step-card:nth-child(5){
  --accent-color:#a855f7;
  border-color:rgba(168,85,247,.25);
  background:
    radial-gradient(circle at top,rgba(235,180,255,.16),rgba(15,23,42,.95)),
    linear-gradient(120deg,transparent 0%,rgba(168,85,247,.28) 40%,rgba(236,72,153,.32) 60%,transparent 100%);
  background-size:100% 100%,200% 100%;
  background-repeat:no-repeat;
}
.step-card:nth-child(5) .highlight-word{color:#d8b4fe;text-shadow:0 0 22px rgba(216,180,254,.7)}
.step-card:nth-child(5) .step-icon-wrapper{
  background:rgba(76,29,149,.45);
  color:#d8b4fe;
  border-color:rgba(168,85,247,.6);
  box-shadow:0 0 18px rgba(168,85,247,.6);
}
.step-card:nth-child(5) .separator-gradient{background:linear-gradient(90deg,transparent,rgba(168,85,247,.7),transparent)}

.checklist-container{display:flex;flex-direction:column;gap:12px}
.check-item{
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.05);
  padding:12px 16px;
  border-radius:12px;
  display:flex;
  align-items:center;
  gap:15px;
  font-size:.95rem;
  color:var(--text-muted);
  transition:all .3s ease;
}
.check-item:hover{background:rgba(168,85,247,.05);border-color:rgba(168,85,247,.2);transform:translateX(5px)}
.check-icon{display:flex;align-items:center;justify-content:center;color:#c4b5fd;flex-shrink:0}
.check-icon svg{width:20px;height:20px;stroke-width:2}

.separator-gradient{
  height:1px;
  width:100%;
  margin:25px 0;
  opacity:.6;
  background: linear-gradient(
    90deg, 
    transparent, 
    rgba(255, 255, 255, 0.05),
    transparent
  ) !important;
}
.step-header{
  display:flex;
  align-items:center;
  gap:20px;
  align-items: flex-start !important;
}
.step-icon-wrapper{
  width:50px;
  height:50px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  flex-shrink:0;
  border:1px solid;
}
.step-icon-svg{width:26px;height:26px;stroke:currentColor;stroke-width:1.5;fill:none}
.step-card h3{
  font-size:1.25rem;
  color:rgba(243, 244, 246, 0.95);
  margin:0;
  line-height:1.35;
  font-weight: 600 !important;
}
.step-number-bg{
  position:absolute;
  font-family:'Fraunces',serif;
  font-size:8.5rem;
  opacity:.12;
  color:var(--text-main);
  font-weight:700;
  top:-15px;
  right:20px;
  pointer-events:none;
}

.step-card.whatsapp-style{ border-color: rgba(16,185,129,.25); }
.step-card.final-step{ border-color: rgba(168,85,247,.28); }

/* Lego / Nota / Assets */
.lego-box{
  text-align: center;
  padding: 20px;
  background: rgba(168, 85, 247, 0.05);
  border-radius: 20px;
  margin: 25px 0;
  border: 1px dashed rgba(168, 85, 247, 0.3);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.lego-gif-card{
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  aspect-ratio: 550/309;
  opacity: 0.9;
}
.lego-content{padding:30px}

.note-box{
  background:rgba(255,255,255,.03);
  border-radius:12px;
  padding:15px 20px;
  margin-top:25px;
  border-left:3px solid var(--accent-gold);
  text-align:left;
}
.note-highlight{color:#fff;font-weight:700;font-size:.95rem;display:block;margin-bottom:5px}
.note-sub{color:var(--text-muted);font-size:.9rem;opacity:.9}

.assets-container{display:grid;grid-template-columns:1fr;gap:12px;margin-top:15px}
.asset-card{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:15px;
  border-radius:12px;
  background:rgba(15,23,42,.9);
  border:1px solid rgba(148,163,184,.4);
  box-shadow:0 10px 25px rgba(15,23,42,.8);
  transition:all .25s ease;
}
.asset-card:hover{
  transform:translateY(-3px);
  border-color:rgba(168,85,247,.6);
  box-shadow:0 16px 35px rgba(15,23,42,.95);
}
.asset-icon-box{
  width:34px;height:34px;
  border-radius:10px;
  background:rgba(15,23,42,.9);
  border:1px solid rgba(148,163,184,.6);
  display:flex;align-items:center;justify-content:center;
  margin-right:14px;
  flex-shrink:0;
}
.asset-icon-box svg{width:18px;height:18px}
.asset-info{flex:1;display:flex;flex-direction:column;gap:2px}
.asset-title{display:block;font-weight:600;color:#e5e7eb;font-size:.95rem}
.asset-sub{
  display:block;
  font-size:.8rem;
  color:var(--text-muted);
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-top:2px;
}
.asset-check{
  width:20px;height:20px;
  border-radius:999px;
  background:rgba(34,197,94,.12);
  border:1px solid rgba(34,197,94,.7);
  display:flex;align-items:center;justify-content:center;
  color:#4ade80;
  flex-shrink:0;
}
.asset-check svg{width:12px;height:12px}

/* ==========================================================================
   SIMPLE CTA (banda preta)
   ========================================================================== */
.simple-cta-section{
  margin:80px 0 100px;
  padding:80px 0 100px;
  text-align:center;
  background: linear-gradient(
  180deg,
  rgba(18, 12, 22, 0.98) 0%,
  #0a0712 100%
  );
  position:relative;
  left:50%;right:50%;
  margin-left:-50vw;
  margin-right:-50vw;
  width:100vw;
  overflow:hidden;
}
.steps-container::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 180px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(18, 12, 22, 0.4) 50%,
    rgba(18, 12, 22, 0.85) 100%
  );
  pointer-events: none;
  z-index: 0;
}
.simple-cta-wrapper{
  background:transparent;
  border:none;
  border-radius:0;
  box-shadow:none;
  overflow:visible;
  max-width:750px;
  margin:0 auto;
  padding:40px 20px;
  position:relative;
}
.simple-cta-title{font-family:'Fraunces',serif;font-size:1.8rem;color:#fff;line-height:1.25;margin-bottom:40px}
.simple-cta-subtitle{display:block;font-family:'Outfit',sans-serif;font-size:1.35rem;color:var(--text-muted);font-weight:400;margin-top:15px;opacity:.9}
.highlight-green{color:var(--brand-green);font-style:italic;}
.highlight-white{color:#fff;text-decoration:underline;text-decoration-color:rgba(168,85,247,.5);text-underline-offset:4px}

.simple-cta-action{
  margin-bottom:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  flex-direction:column;
}
.pointing-hand{
  display:inline-block;
  margin:0;
  width:35px;height:35px;
  vertical-align:middle;
  animation:pointDown 1.5s infinite ease-in-out;
}

/* ==========================================================================
   BIO
   ========================================================================== */
.bio-section{
  background:linear-gradient(180deg,rgba(25,255,255,.01) 0%,transparent 100%);
  border-radius:30px;
  padding:52px 22px 48px;
  margin:80px 0;
  border:1px solid rgba(255, 255, 255, 0.07);
}
.bio-title{font-size:1.7rem;color:#fff;margin-bottom:14px}
.bio-header{display:flex;flex-direction:column;align-items:flex-start;gap:20px;margin-bottom:60px}

.bio-avatar{
  width:120px;height:120px;
  border-radius:50%;
  background:#2a2a2a;
  border:2px solid var(--brand-green);
  flex-shrink:0;
  overflow:hidden;
  display:flex;align-items:center;justify-content:center;
  color:#666;
  box-shadow:0 0 30px rgba(16,185,129,.2);
  margin:0 auto 4px;
}
.bio-avatar img{width:100%;height:100%;object-fit:cover}

.bio-role{
  font-weight:600;
  font-size:.8rem;
  letter-spacing:.1em;
  opacity:.95;
  display:inline-flex;
  align-items:center;
  flex-wrap:wrap;
  column-gap:10px;
  row-gap:4px;
  margin-top:4px;
  margin-bottom:16px;
  color:#9ca3af;
}
.bio-name{color:#34d399;font-weight:800;letter-spacing:.12em}
.bio-primary-tag{color:#f9fafb;font-weight:700;letter-spacing:.16em}
.bio-role-dot{display:none}
.bio-secondary-tag{
  flex-basis:100%;
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-weight:500;
  font-size:.85rem;
  letter-spacing:.04em;
  color:#6ee7b7;
  text-transform:none;
}
.bio-secondary-tag::before{
  content:'';
  width:7px;height:7px;
  border-radius:9999px;
  background:var(--brand-green);
  box-shadow:0 0 10px rgba(16,185,129,.9);
  animation:pulse-dot 1.6s infinite ease-in-out;
}

.bio-statement-box{
  margin-top:16px;
  padding-left:14px;
  border-left:2px solid var(--brand-green);
  display:flex;
  flex-direction:column;
  gap:12px;
  max-width:100%;
}
.statement-lead{
  font-size:1.02rem;
  color:var(--text-muted);
  margin:0 0 6px;
  line-height:1.6;
  position:relative;
  padding-left:22px;
}
.statement-lead::before{
  content:"";
  position:absolute;
  left:0;
  top:.05em;
  font-family:'Fraunces',serif;
  font-size:1.8rem;
  line-height:1;
  color:rgba(16,185,129,.5);
  pointer-events:none;
}
.highlight-quote{
  color:#fff;
  font-weight:800;
  font-style:normal;
  text-decoration:line-through;
  text-decoration-color:rgba(239,68,68,.5);
  text-decoration-thickness:3px;
  text-underline-offset:4px;
}
.bio-statement-divider{
  width:100%;
  height:1px;
  margin:10px 0 12px;
  opacity:.7;
  background:linear-gradient(90deg,rgba(16,185,129,.5),rgba(168,85,247,.5));
}
.statement-body{font-size: 1.02rem;line-height: 1.85;margin-top: 14px;}

.statement-body strong{color:#e5e7eb;font-weight:600}

.bio-benefit-card{display:flex;gap:14px;align-items:flex-start;background:transparent;border:none;border-radius:0;padding:18px;margin-top:20px}
.bio-benefit-card-icon{flex-shrink:0;font-size:1.4rem;line-height:1}
.bio-benefit-card-main{margin:0 0 12px 0;font-size:1rem;color:#fff;font-weight:500;line-height:1.5}
.bio-benefit-card-sub{margin:0;font-size:.95rem;color:#d1d5db;line-height:1.5}
.statement-footer{margin-top:16px}

.bio-cta-section{margin:50px auto 70px;text-align:center}
.bio-cta-section p{font-size:.98rem;color:var(--text-muted);margin-bottom:18px}
.bio-cta-section .cta-button{padding:14px 24px;font-size:.98rem}

/* ==========================================================================
   FILTRO INTELIGENTE
   ========================================================================== */
.filter-cta-section{margin:16px auto 8px;text-align:center}
.filter-cta-section .cta-button{padding:14px 30px;font-size:1rem;border-radius:9999px}

.filter-separator{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:15px;
  margin:60px 0 30px;
  opacity:.5;
}
.filter-separator .line{
  height:1px;width:100px;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.3),transparent);
}
.filter-header-block{text-align:center;margin-bottom:40px}
.filter-header-block h4{
  font-size:1.9rem;
  color:rgba(243, 244, 246, 0.95);
  margin-bottom:10px;
  background:linear-gradient(180deg,#fff 0%,#e5e7eb 100%);
  background-clip:text;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}
.filter-sub{
  color:var(--text-muted);
  font-size:.95rem;
}
.filter-traffic-wrapper{max-width:800px;margin:0 auto}

.traffic-grid{
  display:flex;
  flex-direction:column;
  gap:40px;
  position:relative;
  padding-left:0;
}

.t-card{
  position:relative;
  margin:0;
  padding:1.5rem;
  border-radius:14px;
  z-index:1;
  display:flex;
  align-items:flex-start;
  gap:12px;
  margin-bottom: 30px;
}
.t-card::before,
.t-card::after{
  content:'';
  position:absolute;
  left:0;right:0;
  height:2px;
  opacity:.9;
  background:linear-gradient(90deg,transparent,var(--t-line-color,rgba(148,163,184,.7)),transparent);
}
.t-card::before{top:0}
.t-card::after{bottom:0}

.t-icon{
  width:34px;height:34px;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  font-size:1.1rem;
  line-height:1;
  border:1px solid transparent;
  position:relative;
  z-index:2;
}
.t-content{flex:1}
.t-scenario{
  font-family:'Outfit',sans-serif;
  font-size:.95rem;
  color:#e5e7eb;
  font-weight:500;
  margin-bottom:4px;
  line-height:1.3;
}
.t-scenario strong{font-weight:800;letter-spacing:.5px}
.t-desc{font-size:.8rem;color:#9ca3af;font-style:italic;margin-bottom:6px;display:block}
.t-action{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:4px 10px;
  border-radius:6px;
  font-weight:800;
  font-size:.78rem;
  text-transform:uppercase;
  letter-spacing:1px;
}

/* cores */
.t-card.red{
  --t-line-color:#f87171;
  border-color:rgba(239,68,68,.2);
  background:linear-gradient(90deg,rgba(239,68,68,.05) 0%,transparent 100%);
  opacity:.86;
}
.t-card.red .t-icon{background:rgba(239,68,68,.1);color:#f87171;border-color:rgba(239,68,68,.3)}
.t-card.red .t-scenario strong{color:#fca5a5}
.t-card.red .t-action{background:rgba(239,68,68,.1);color:#f87171;border:1px solid rgba(239,68,68,.2)}

.t-card.yellow{
  --t-line-color:#facc15;
  border-color:rgba(234,179,8,.2);
  background:linear-gradient(90deg,rgba(234,179,8,.05) 0%,transparent 100%);
}
.t-card.yellow .t-icon{background:rgba(234,179,8,.1);color:#facc15;border-color:rgba(234,179,8,.3)}
.t-card.yellow .t-scenario strong{color:#fde047}
.t-card.yellow .t-action{background:rgba(234,179,8,.1);color:#facc15;border:1px solid rgba(234,179,8,.2)}

.t-card.green{
  --t-line-color:#34d399;
  border-color:rgba(16,185,129,.5);
  background:linear-gradient(90deg,rgba(16,185,129,.08) 0%,transparent 100%);
  box-shadow:0 8px 20px -8px rgba(16,185,129,.22);
  z-index:2;
}
.t-card.green .t-icon{
  background:rgba(16,185,129,.2);
  color:#34d399;
  border-color:rgba(16,185,129,.5);
  box-shadow:0 0 15px rgba(16,185,129,.35);
}
.t-card.green .t-scenario strong{color:#6ee7b7}
.t-card.green .t-action{
  background:rgba(16,185,129,.15);
  color:#34d399;
  border:1px solid rgba(16,185,129,.5);
  box-shadow:0 0 15px rgba(16,185,129,.22);
}

/* Blindagem */
.shield-box{
  margin-top:10px;
  padding:10px 12px;
  background:linear-gradient(135deg,rgba(16,185,129,.1) 0%,rgba(16,185,129,.03) 100%);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  border:1px solid rgba(16,185,129,.25);
  box-shadow:inset 0 0 15px rgba(255,255,255,.05);
  border-radius:8px;
  display:flex;
  gap:8px;
  align-items:center;
}
.shield-icon{color:#34d399;flex-shrink:0}
.shield-content{font-size:.82rem;color:#d1fae5;line-height:1.35}
.shield-title{text-transform:uppercase;font-size:.7rem;letter-spacing:1px;color:#6ee7b7;font-weight:800;display:block;margin-bottom:1px}

/* ==========================================================================
   DIFERENCIAIS
   ========================================================================== */
.diff-section{padding:50px 0;text-align:center}
.diff-section h2{
  font-size:clamp(2rem,4.5vw,3rem);
  color:#fff;
  margin-bottom:60px;
  font-weight:700;
  line-height:1.2;
  text-shadow:0 0 30px rgba(168,85,247,.25);
}
.diff-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:30px;margin-top:50px}
.diff-card{
  background:linear-gradient(145deg,rgba(255,255,255,.03) 0%,rgba(255,255,255,.01) 100%);
  border:1px solid rgba(255, 255, 255, 0.07);
  padding:1.5rem;
  border-radius:24px;
  transition:all .3s ease;
  position:relative;
  overflow:hidden;
  box-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}
.diff-card:hover{
  transform:translateY(-5px);
  border-color:rgba(168,85,247,.3);
  box-shadow: 
    0 8px 24px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(168, 85, 247, 0.1) inset;
}
.diff-icon-wrapper{
  width:60px;height:60px;
  background:rgba(168,85,247,.1);
  border-radius:16px;
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 25px;
  color:var(--primary-purple);
  border:1px solid rgba(168,85,247,.2);
  font-size:1.8rem;
}
.diff-card:hover .diff-icon-wrapper{background:var(--primary-purple);color:#fff;box-shadow:0 0 20px rgba(168,85,247,.4)}
.diff-title{
  font-weight:700;
  color:rgba(243, 244, 246, 0.95);
  margin-bottom:15px;
  font-size:1.25rem;
}
.diff-desc{
  font-size:1rem;
  line-height:1.7;
  color: var(--text-body);
}

/* ==========================================================================
   CTA BOX (#agendamento)
   ========================================================================== */
#agendamento{ scroll-margin-top: 250px; }
.cta-box{
  text-align:center;
  padding:60px 20px;
  margin:80px 0 60px;
  border-top:1px solid rgba(255, 255, 255, 0.07);
}
.cta-box h2{font-size:clamp(2rem,4vw,2.8rem);color:#fff;margin-bottom:30px}

/* ==========================================================================
   MCU
   ========================================================================== */
.mcu-section{ padding: 72px 0 64px; margin-top: 56px; }
.mcu-header{ text-align: center; padding: 0 16px; margin-bottom: 28px; }
.mcu-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:8px 18px;
  border-radius:999px;
  font-size:.78rem;
  letter-spacing:.22em;
  text-transform:uppercase;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.12);
  margin-bottom: 16px;
  color: var(--accent-gold);
  font-weight: 700;
}
.mcu-title{
  font-family:'Fraunces',serif;
  font-size: clamp(1.85rem, 6vw, 2.6rem);
  line-height: 1.15;
  margin: 0;
  color:#fff;
}
.highlight-mcu{
  background:linear-gradient(90deg,#fff 0%,#a855f7 50%,#34d399 100%);
  background-size:200% auto;
  background-clip:text;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  font-style:italic;
  font-weight:900;
  text-shadow:0 0 30px rgba(168,85,247,.35);
}
.glow-purple-anim{
  color:#fff;
  animation: glowPulsePurple 2.2s ease-in-out infinite;
}
.mcu-body{
  max-width: 720px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mcu-text-lead{
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.mcu-text-support{
  color: rgba(156, 163, 175, 0.9);
  font-size: 1.08rem;
  line-height: 1.85;
  text-align: center;
}
.mcu-warning-box{
  border-radius: 18px;
  padding: 18px 18px;
  margin: 2.5rem 0 2rem;
  background: linear-gradient(180deg, rgba(255,77,77,.08), rgba(255,255,255,.02));
  border: 1px solid rgba(255,77,77,.16);
  box-shadow: 0 14px 30px -18px rgba(0,0,0,.65);
}
.mcu-warning-box p{
  font-size: .98rem;
  line-height: 1.65;
  color: #e5e7eb;
}
.mcu-warning-box strong{color:#fff}
.mcu-warning-box em{font-style: italic;color:#fff;opacity:.95}
.mcu-video-wrapper{
  margin: 6px 0 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.25);
  box-shadow: 0 18px 38px -22px rgba(0,0,0,.75);
  position: relative;
  aspect-ratio: 16 / 9;
}
.mcu-video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 18px;
  opacity: .92;
  background:#000;
}
.video-glow{
  pointer-events:none;
  position:absolute;
  inset:-30%;
  background: radial-gradient(circle at 40% 35%, rgba(168,85,247,.16), transparent 55%);
  opacity:.65;
}
.mcu-conclusion-box{
  margin-top: 10px;
  padding: 18px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.08);
}
.mcu-text{
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(209, 213, 219, 0.85);
  text-align: left;
}
.mcu-center{ text-align:center; }
.mcu-text strong{color:#fff}
.mcu-divider{
  width: 44px;
  height: 2px;
  margin: 16px auto 12px;
  opacity: .6;
  background: linear-gradient(90deg, rgba(168,85,247,.0), rgba(168,85,247,.6), rgba(16,185,129,.6), rgba(16,185,129,.0));
  border-radius: 999px;
}
.mcu-kicker{
  display:inline-block;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:.78rem;
  color:rgba(255,255,255,.65);
  margin-right:6px;
}
.mcu-strike{
  color:rgba(255,255,255,.55);
  text-decoration:line-through;
  text-decoration-color:rgba(239,68,68,.55);
  text-decoration-thickness:3px;
}
.mcu-em{ font-weight:900; letter-spacing:.01em; }
.mcu-em-green{ color:var(--brand-green); text-shadow:0 0 18px rgba(16,185,129,.22); }
.mcu-em-purple{ color:#a855f7; text-shadow:0 0 16px rgba(168,85,247,.18); }
.mcu-em-white{ color:#fff; text-shadow:0 0 14px rgba(255,255,255,.08); }
.mcu-muted{ color:rgba(209,213,219,.92); }
.mcu-pill{
  display:inline-block;
  margin:10px auto 0;
  padding:6px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  font-weight:800;
  font-size:.9rem;
  color:rgba(255,255,255,.85);
  letter-spacing:.02em;
  white-space:nowrap;
}

/* FINAL (headline neon) */
.mcu-final-statement{
  width:100vw;
  position:relative;
  left:50%;
  margin-left:-50vw;
  background:#07070a;
  margin-top: 18px;
  padding: 48px 0 60px;
  border-top:1px solid rgba(255,255,255,.08);
}
.mcu-typo-kicker{
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin: 0 0 10px;
  text-align:center;
}
.mcu-typo-main{
  font-family: 'Fraunces', serif;
  font-size: clamp(2.6rem, 9vw, 3.4rem);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 18px;
  text-align:center;
}
.mcu-typo-main span{ display:block; font-size: 0.85em; opacity: .85; }
.neon-purple{
  color: #0b0b0f;
  -webkit-text-stroke: 2.5px rgba(214,141,255,1);
  paint-order: stroke fill;
  text-shadow:
    0 0 0.7px rgba(214,141,255,.95),
    0 0 3.2px rgba(186, 85, 255,.75);
  animation: strokePulsePurple 2.2s ease-in-out infinite;
}
.mcu-typo-question{
  font-family: 'Outfit', sans-serif;
  margin-top: 18px;
  font-size: 1.15rem;
  line-height: 1.5;
  color: rgba(255,255,255,.78);
}
.mcu-final-tail{
  display:block;
  margin-top: .45em;
  font-style: italic;
  font-weight: 800;
  color: #f472b6;
  text-shadow:
    0 0 12px rgba(244,114,182,.22),
    0 0 22px rgba(168,85,247,.14);
}
.final-cta-section{
  margin: 36px auto 10px;
  text-align: center;
  padding: 0 10px;
}
.final-whatsapp-cta{
  background: linear-gradient(135deg,
    rgba(168,85,247,.18) 0%,
    rgba(124,58,237,.14) 55%,
    rgba(91,33,182,.10) 100%
  );
  border: 1px solid rgba(216,180,254,.22);
  box-shadow:
    0 18px 55px rgba(168,85,247,.12),
    0 0 0 1px rgba(255,255,255,.05) inset;
  color: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-shadow: 0 1px 0 rgba(0,0,0,.25);
  animation: ctaIdleFloat 2.1s ease-in-out infinite;
}
.final-whatsapp-cta:hover{
  animation:none;
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow:
    0 26px 70px rgba(168,85,247,.18),
    0 0 32px rgba(216,180,254,.10),
    0 0 0 1px rgba(255,255,255,.08) inset;
}

/* ==========================================================================
   FOCO "cinema" (topo/baixo) durante #agendamento
   ========================================================================== */
:root{
  --focus-blur: 10px;
  --focus-dim: rgba(0,0,0,.45);
  --focus-band: 22vh;
}
body::before,
body::after{
  content:"";
  position: fixed;
  left: 0; right: 0;
  height: var(--focus-band);
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity .28s ease;
}
body::before{
  top: 0;
  background: linear-gradient(to bottom, var(--focus-dim), rgba(0,0,0,0));
  backdrop-filter: blur(var(--focus-blur));
  -webkit-backdrop-filter: blur(var(--focus-blur));
}
body::after{
  bottom: 0;
  background: linear-gradient(to top, var(--focus-dim), rgba(0,0,0,0));
  backdrop-filter: blur(var(--focus-blur));
  -webkit-backdrop-filter: blur(var(--focus-blur));
}
body.focus-agendamento::before,
body.focus-agendamento::after{
  opacity: 1;
}

/* ==========================================================================
   Card OBS - Padronização
   ========================================================================== */
.step-00.obs-card {
    --accent-color: #6b7280;
    border-color: rgba(107, 114, 128, 0.2) !important;
    background: linear-gradient(145deg, rgba(255,255,255,.02) 0%, rgba(255,255,255,.008) 100%);
    margin-top: 40px;
    position: relative;
}
.step-00.obs-card::after {
    content: '';
    position: absolute;
    left: 50%;
    top: -40px;
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, rgba(107, 114, 128, 0.3), transparent);
    transform: translateX(-50%);
}
.step-00.obs-card .step-icon-wrapper {
    background: rgba(107, 114, 128, 0.1);
    color: rgba(209, 213, 219, 0.9);
    border-color: rgba(107, 114, 128, 0.2);
}
.step-00.obs-card .highlight-word {
    color: rgba(209, 213, 219, 0.9);
}
.step-00.obs-card .separator-gradient {
    background: linear-gradient(90deg, transparent, rgba(107, 114, 128, 0.3), transparent);
}

/* ===== Passo 00 (scanável) ===== */
.step-00{
  border-color: rgba(233,213,255,.12);
  background:
    radial-gradient(circle at 25% 10%, rgba(168,85,247,.10), transparent 58%),
    linear-gradient(180deg, rgba(255,255,255,.022), rgba(255,255,255,.010));
}
.step-00:hover{
  border-color: rgba(233,213,255,.20);
  box-shadow: 0 18px 50px -30px rgba(168,85,247,.28);
}
.step-00 .step-icon-wrapper{
  background: rgba(168,85,247,.07);
  color: rgba(233,213,255,.95);
  border-color: rgba(233,213,255,.14);
}
.step-00 .separator-gradient{
  background: linear-gradient(90deg, transparent, rgba(233,213,255,.28), transparent);
}
.step-00 .highlight-word{
  color: rgba(233,213,255,.96);
  text-shadow: 0 0 18px rgba(168,85,247,.16);
}
.step-00-copy{
  background: rgba(0,0,0,.12);
  border: 1px solid rgba(255,255,255,.055);
  border-radius: 18px;
  padding: 18px 18px;
}
.scan-list{
  list-style: none;
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
}
.scan-item{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  position: relative;
  padding: 2px 0;
}
.scan-item:not(:last-child){
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.scan-dot{
  width: 11px;
  height: 11px;
  border-radius: 999px;
  margin-top: 7px;
  flex: 0 0 11px;
  position: relative;
  background: radial-gradient(circle,
    color-mix(in srgb, var(--dot) 85%, white 15%) 0%,
    var(--dot) 38%,
    rgba(0,0,0,0) 72%
  );
  box-shadow:
    0 0 0 3px rgba(15,10,19,.55),
    0 0 10px color-mix(in srgb, var(--dot) 35%, transparent);
  opacity: .92;
}
.scan-content{ min-width: 0; }
.scan-title{
  font-weight: 800;
  color: rgba(243,244,246,.92);
  font-size: 1.04rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.scan-body{
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  margin-top: 6px;
  font-weight: 400;
  color: rgba(209,213,219,.78);
  font-size: 1.00rem;
  line-height: 1.55;
}
.scan-callout{
  margin-top: 10px;
  padding-left: 12px;
  border-left: 2px solid rgba(96,165,250,.18);
}
.scan-callout .scan-title{
  color: rgba(243,244,246,.90);
}
.dot-1{--dot: #cbd5e1; }
.dot-2{--dot: #c4b5fd; }
.dot-3{--dot: #a78bfa; }
.dot-4{--dot: rgba(110,231,183,.55); }

/* OBS isolamento */
.obs-card{ margin-top: 80px; position: relative; border-top: 1px solid rgba(255,255,255,.10); padding-top: 42px; }
.obs-card::before, .obs-card::after{ display: none !important; }

/* ==========================================================================
   FAQ (Accordion)
   ========================================================================== */
.faq-section{ margin: 90px 0 40px; padding: 0 0 10px; }
.faq-header{ text-align: center; padding: 0 16px; margin-bottom: 26px; }
.faq-title{
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4.6vw, 2.8rem);
  line-height: 1.15;
  color: #fff;
  margin: 0 0 10px;
  text-shadow: 0 0 40px rgba(168,85,247,.22);
}
.faq-subtitle{
  margin: 0 auto;
  max-width: 620px;
  color: var(--text-muted);
  font-size: 1.02rem;
}
.faq-accordion{
  max-width: 820px;
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  gap: 14px;
}
.faq-item{
  background: linear-gradient(145deg, rgba(255,255,255,.03) 0%, rgba(255,255,255,.01) 100%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}
.faq-item::before{
  content:"";
  position:absolute;
  left:0; top:0; bottom:0;
  width: 2px;
  background: linear-gradient(180deg, rgba(168,85,247,.85), rgba(168,85,247,0));
  opacity: .45;
}
.faq-q{
  width: 100%;
  background: transparent;
  border: 0;
  color: #fff;
  padding: 18px 18px 18px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
  text-align: left;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.02rem;
  line-height: 1.35;
}
.faq-q:focus-visible{
  outline: none;
  box-shadow: 0 0 0 2px rgba(168,85,247,.35) inset, 0 0 0 4px rgba(168,85,247,.12);
}
.faq-q-text{ color: rgba(243,244,246,.96); }
.faq-icon{
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 12px;
  background: rgba(168,85,247,.10);
  border: 1px solid rgba(168,85,247,.18);
  position: relative;
  box-shadow: 0 10px 30px -18px rgba(168,85,247,.35);
}
.faq-icon::before,
.faq-icon::after{
  content:"";
  position:absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  background: rgba(233,213,255,.95);
  transform: translate(-50%,-50%);
  border-radius: 999px;
  opacity: .95;
}
.faq-icon::after{
  width: 2px;
  height: 14px;
  transition: transform .22s ease, opacity .22s ease;
}
.faq-a{
  padding: 0 18px 18px 18px;
  color: rgba(209,213,219,.86);
  font-size: 0.98rem;
  line-height: 1.65;
  border-top: 1px solid rgba(255,255,255,.06);
  animation: faqIn .22s ease both;
}
@keyframes faqIn{
  from{ opacity: 0; transform: translateY(-4px); }
  to{ opacity: 1; transform: translateY(0); }
}
.faq-item.is-open{
  border-color: rgba(168,85,247,.22);
  box-shadow: 0 18px 60px -30px rgba(168,85,247,.22);
  background: linear-gradient(145deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.012) 100%);
}
.faq-item.is-open .faq-icon{
  background: rgba(168,85,247,.16);
  border-color: rgba(168,85,247,.28);
}
.faq-item.is-open .faq-icon::after{
  transform: translate(-50%,-50%) scaleY(0);
  opacity: 0;
}
.faq-title-highlight{
  background: linear-gradient(90deg, #e9d5ff 0%, #a855f7 55%, #c4b5fd 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 26px rgba(168,85,247,.22);
  font-weight: 900;
}
.simple-cta-action .action-text{
  display: inline-flex;
  align-items: center;
  gap: .35em;
  transform: translateX(10px);
}

/* Cookie banner sempre acima */
#cookie-banner{ z-index: 10000 !important; }
.whatsapp-float{ z-index: 9000 !important; }

/* ==========================================================================
   MEDIA QUERIES (otimizadas)
   ========================================================================== */
@media (max-width:600px){
  :root{ --focus-band: 26vh; --focus-blur: 11px; }
  .mcu-pill{ white-space:normal; line-height:1.35; }
}

@media (max-width:640px){
  .faq-q{ padding: 16px; font-size: 1rem; }
  .faq-a{ padding: 0 16px 16px 16px; }
}

@media (min-width:481px){
  .asset-card{padding:16px 18px}
  .asset-title{font-size:.96rem}
}

@media (min-width:601px){
  .diff-section{padding:80px 0}
  .cta-box{padding:80px 20px 100px}
  .simple-cta-wrapper{padding:0}
  .simple-cta-title{font-size:2.2rem}
  .simple-cta-action{flex-direction:row}
  .traffic-grid{gap:28px}
  .t-card{padding:20px 18px;border-radius:16px;gap:16px}
  .t-icon{width:45px;height:45px;border-radius:12px;font-size:1.4rem}
  .t-scenario{font-size:1.1rem;line-height:1.4}
  .t-desc{font-size:.95rem;margin-bottom:12px}
  .t-action{font-size:.9rem;padding:6px 12px;border-radius:8px}
  .shield-box{margin-top:20px;padding:15px;border-radius:12px;gap:12px}
  .shield-title{font-size:.75rem;margin-bottom:2px}
  .shield-content{font-size:.95rem;line-height:1.4}
  .mcu-section{ padding: 110px 0 90px; }
  .mcu-body{ padding: 0 20px; gap: 20px; }
  .mcu-text-lead{ font-size: 1.15rem; }
  .mcu-text-support{ font-size: 1.05rem; }
  .mcu-text{ font-size: 1.05rem; }
}

@media (min-width:769px){
  .cta-button{
    padding:18px 24px;
    border-radius:16px;
    font-size:1.1rem;
    box-shadow:0 10px 40px -10px rgba(16,185,129,.6);
    max-width:100%;
  }
  .bio-section{padding:80px 50px}
  .bio-header{flex-direction:row;align-items:center;gap:40px}
  .bio-title{font-size:2rem;margin-bottom:8px}
  .bio-avatar{margin:0}
  .bio-role{font-size:.9rem;letter-spacing:.12em;margin-bottom:10px;color:inherit}
  .bio-role-dot{
    display:inline-block;
    width:6px;height:6px;
    border-radius:9999px;
    background:var(--brand-green);
    margin:0 4px;
    animation:pulse-dot 1.6s infinite ease-in-out;
  }
  .bio-secondary-tag{font-size:.8rem}
  .bio-secondary-tag::before{content:none}
  .bio-statement-box{margin-top:20px;padding-left:20px;border-left-width:3px}
  .statement-lead{font-size:1.15rem;line-height:1.4;margin:0;padding-left:22px}
  .statement-body{font-size:1rem;line-height:1.6;padding-left:0}
  .bio-benefit-card{padding:0;margin-top:25px}
}

@media (min-width:900px){
  .steps-container{grid-template-columns:1fr;gap:70px;max-width:850px;margin-left:auto;margin-right:auto}
  .steps-container::before{
    content:'';
    display:block;
    position:absolute;
    top:30px;bottom:30px;left:50%;
    width:1px;
    background:linear-gradient(180deg,rgba(168,85,247,0) 0%,rgba(168,85,247,.5) 20%,rgba(168,85,247,.5) 80%,rgba(168,85,247,0) 100%);
    z-index:0;
    transform:translateX(-50%);
  }
  .step-card::before{display:none}
  .step-card{width:45%;margin-left:0}
  .step-card:nth-child(odd){margin-right:auto;text-align:right}
  .step-card:nth-child(even){margin-left:auto;text-align:left}
  .step-card::after{
    content:'';
    position:absolute;
    width:12px;height:12px;
    background:var(--bg-deep);
    border:2px solid var(--primary-purple);
    border-radius:50%;
    top:40px;
    z-index:2;
    box-shadow:0 0 15px rgba(168,85,247,.4);
  }
  .step-card:nth-child(odd)::after{right:-13.8%}
  .step-card:nth-child(even)::after{left:-13.8%}
  .step-card:nth-child(odd) .step-header{flex-direction:row-reverse}
  .step-card:nth-child(odd) .separator-gradient{background:linear-gradient(270deg,transparent,var(--accent-color),transparent)}
  .step-card:nth-child(odd) .step-number-bg{right:auto;left:20px}
  
  /* OBS desktop */
  .step-00.obs-card {
    width: 45%;
    margin-left: auto !important;
    text-align: left !important;
  }
  .step-00.obs-card::after {
    left: -13.8% !important;
    top: 50%;
    height: 2px;
    width: 13.8%;
    background: linear-gradient(90deg, rgba(107, 114, 128, 0.3), transparent);
    transform: translateY(-50%);
  }
  .step-00.obs-card .step-header { flex-direction: row !important; }
  
  .obs-card{
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .obs-card .step-header{ justify-content: center; }
  .obs-card h3{ text-align: center; }
}

@media (min-width:1024px){
  .mcu-final-statement{ text-align:center; }
  .mcu-typo-kicker{
    display:block;
    width:100%;
    margin:0 auto 10px;
    text-align:center !important;
  }
}
