/* ═══════════════════════════════════════════════════════════
   SIXTEMA — DESIGN SYSTEM BASE
   Importado por todas as LPs em /solucoes/
   Tokens e linguagem visual extraídos da home (index.html).
   A home ainda mantém o próprio CSS inline; ao migrá-la para
   este arquivo, remover o <style> dela e manter só este import.
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500&family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@1,500;1,600&display=swap');

/* ── TOKENS ─────────────────────────────────────────────── */
:root{
  --green:#CBF86C; --purple:#7F41FF;
  --bg:#080808; --bg2:#111111; --bg3:#0d0d0d;
  --card:#141414; --card2:#181818; --border:#232323;
  --muted:#9a9a9a; --text:#f2f2f2;
  --radius:12px;
  --mono:'IBM Plex Mono',monospace;
  --serif:'Playfair Display',serif;
}

/* ── RESET ──────────────────────────────────────────────── */
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{background:var(--bg);color:var(--text);font-family:'Inter',sans-serif;line-height:1.6;overflow-x:hidden}
img,svg,video,iframe{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
ul,ol{list-style:none}
button{font-family:inherit;cursor:pointer}

/* ── ÊNFASE ─────────────────────────────────────────────── */
em.g,.em-green{font-family:var(--serif);font-style:italic;color:var(--green)}
em.p,.em-purple{font-family:var(--serif);font-style:italic;color:var(--purple)}

/* ── ÂNCORAS (nav fixo não cobre o título) ──────────────── */
section[id],[id]{scroll-margin-top:88px}

/* ── LAYOUT ─────────────────────────────────────────────── */
.container{max-width:1200px;margin:0 auto;padding:6rem 1.5rem}
@media(min-width:768px){.container{padding:7rem 3rem}}
.grid-2{display:grid;grid-template-columns:1fr;gap:1.25rem}
@media(min-width:768px){.grid-2{grid-template-columns:repeat(2,1fr);gap:1.5rem}}

/* ── RÓTULOS E TÍTULOS ──────────────────────────────────── */
.section-label{font-family:var(--mono);font-size:.75rem;letter-spacing:.18em;text-transform:uppercase;color:var(--green);display:flex;align-items:center;gap:1rem;margin-bottom:1.5rem}
.section-label-line{display:inline-block;width:40px;height:1px;background:var(--green);flex-shrink:0}
.section-label-center{justify-content:center}
.section-label-white{color:#fff}
.section-label-white .section-label-line{background:#fff}
.section-h2{font-size:clamp(1.75rem,4.5vw,3rem);font-weight:500;line-height:1.15;letter-spacing:-.02em;overflow-wrap:break-word}
.section-h2-sm{font-size:clamp(1.4rem,3.2vw,2.1rem);font-weight:500;line-height:1.2;letter-spacing:-.02em}

/* ── BOTÕES ─────────────────────────────────────────────── */
.btn-primary,.btn-primary-lg{display:inline-flex;align-items:center;justify-content:center;gap:.6rem;background:var(--green);color:#080808;font-weight:600;font-size:.95rem;padding:.95rem 1.7rem;border-radius:100px;border:none;transition:transform .2s,box-shadow .2s}
.btn-primary-lg{font-size:1.02rem;padding:1.1rem 2.1rem}
.btn-primary:hover,.btn-primary-lg:hover{transform:translateY(-2px);box-shadow:0 10px 34px rgba(203,248,108,.3)}
.btn-secondary{display:inline-flex;align-items:center;justify-content:center;gap:.6rem;background:transparent;color:var(--text);font-weight:500;font-size:.95rem;padding:.95rem 1.7rem;border-radius:100px;border:1px solid var(--border);transition:border-color .2s,background .2s,transform .2s}
.btn-secondary:hover{border-color:var(--green);background:rgba(203,248,108,.06);transform:translateY(-2px)}

/* ── NAV ────────────────────────────────────────────────── */
nav{position:fixed;top:0;left:0;right:0;z-index:100;display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:1rem 1.5rem;background:rgba(8,8,8,.72);backdrop-filter:blur(14px);border-bottom:1px solid var(--border)}
@media(min-width:768px){nav{padding:1rem 3rem}}
.nav-cta{font-family:var(--mono);font-size:.8rem;font-weight:500;color:#080808;background:var(--green);padding:.6rem 1.1rem;border-radius:100px;white-space:nowrap;display:inline-flex;align-items:center;gap:.5rem;transition:transform .2s,box-shadow .2s}
.nav-cta:hover{transform:translateY(-1px);box-shadow:0 6px 24px rgba(203,248,108,.25)}
.nav-dot{width:6px;height:6px;border-radius:50%;background:#080808;flex-shrink:0;animation:pulse 2s ease-in-out infinite}
@keyframes pulse{0%,100%{opacity:1}50%{opacity:.35}}

/* ── HERO ───────────────────────────────────────────────── */
.hero{position:relative;min-height:100svh;display:flex;flex-direction:column;justify-content:center;padding:8rem 1.5rem 5rem;overflow:hidden;background:var(--bg)}
.hero-inner{position:relative;z-index:2;max-width:900px;margin:0 auto;width:100%;text-align:center}
.hero-inner .section-label{justify-content:center}
.hero h1{font-size:clamp(2.1rem,6vw,4.4rem);font-weight:500;line-height:1.08;letter-spacing:-.03em;margin-bottom:1.5rem}
.hero-sub{color:#c9c9c9;font-weight:300;font-size:clamp(1rem,2vw,1.2rem);max-width:620px;margin:0 auto 2.5rem}
.hero-btns{display:flex;flex-wrap:wrap;gap:1rem;justify-content:center;align-items:center;margin-bottom:2rem}
.hero-note{font-family:var(--mono);font-size:.78rem;letter-spacing:.04em;color:var(--muted);max-width:520px;margin:0 auto}
.hero-glow{position:absolute;border-radius:50%;filter:blur(90px);pointer-events:none;z-index:0}
.hero-glow-purple{width:min(560px,80vw);height:min(560px,80vw);background:rgba(127,65,255,.20);top:-14%;left:-10%}
.hero-glow-green{width:min(460px,70vw);height:min(460px,70vw);background:rgba(203,248,108,.13);bottom:-16%;right:-8%}

/* ── LISTA DE CHECK ─────────────────────────────────────── */
.check-list{display:flex;flex-direction:column;gap:.9rem}
.check-item{display:flex;align-items:flex-start;gap:.75rem;color:#d4d4d4;font-weight:300;line-height:1.5}
.check-icon{color:var(--green);flex-shrink:0;margin-top:.22rem}

/* ── DIFERENCIAIS ───────────────────────────────────────── */
.dif-item{display:flex;align-items:flex-start;gap:.85rem;padding:.55rem 0;color:#d4d4d4;font-weight:300}
.dif-dot-wrap{display:flex;align-items:center;justify-content:center;width:18px;height:18px;border-radius:50%;background:rgba(203,248,108,.12);flex-shrink:0;margin-top:.28rem}
.dif-dot{width:6px;height:6px;border-radius:50%;background:var(--green)}

/* ── COLUNAS DE SEÇÃO ───────────────────────────────────── */
.diferencial-left,.beneficios-left,.objecoes-left{flex:1;min-width:0}

/* ── TIMELINE (metodologia) ─────────────────────────────── */
.timeline{position:relative;display:flex;flex-direction:column;gap:2rem}
.timeline-step{position:relative;display:flex;flex-direction:column}
.timeline-half{flex:1;min-width:0}
.timeline-content h3{font-size:1.12rem;font-weight:500;margin-bottom:.5rem;letter-spacing:-.01em}
.timeline-content p{color:var(--muted);font-weight:300;font-size:.95rem}
.timeline-num-mobile{font-family:var(--mono);font-size:.78rem;letter-spacing:.16em;color:var(--green);margin-bottom:.5rem}
.timeline-num-desktop{display:none}
.timeline-bg-num{display:none}

@media(min-width:900px){
  .timeline{gap:0}
  .timeline::before{content:'';position:absolute;left:50%;top:0;bottom:0;width:1px;background:var(--border);transform:translateX(-50%)}
  .timeline-step{flex-direction:row;align-items:center;gap:2rem;padding:2.2rem 0}
  .timeline-step.even{flex-direction:row-reverse}
  .timeline-num-mobile{display:none}
  .timeline-num-desktop{display:flex;align-items:center;justify-content:center;width:44px;height:44px;border-radius:50%;background:var(--bg);border:1px solid var(--green);color:var(--green);font-family:var(--mono);font-size:.9rem;flex-shrink:0;z-index:2}
  .timeline-content{max-width:420px}
  .timeline-step:not(.even) .timeline-content{margin-left:auto;text-align:right}
  .timeline-bg-num{display:block;font-family:var(--mono);font-size:clamp(3rem,7vw,5.5rem);font-weight:500;color:rgba(255,255,255,.045);line-height:1;user-select:none}
  .timeline-step.even .timeline-bg-num{text-align:right}
}

/* ── FAQ ────────────────────────────────────────────────── */
.faq-list{display:flex;flex-direction:column;gap:.75rem}
.faq-item{background:var(--card);border:1px solid var(--border);border-radius:var(--radius);overflow:hidden;transition:border-color .25s}
.faq-item.open{border-color:rgba(203,248,108,.35)}
.faq-q{width:100%;display:flex;align-items:center;justify-content:space-between;gap:1rem;background:none;border:none;color:var(--text);text-align:left;padding:1.15rem 1.35rem;font-size:1rem;font-weight:400}
.faq-q-text{flex:1}
.faq-chevron{width:18px;height:18px;flex-shrink:0;color:var(--muted);transition:transform .25s,color .25s}
.faq-item.open .faq-chevron{transform:rotate(180deg);color:var(--green)}
.faq-a-wrap{max-height:0;overflow:hidden;transition:max-height .32s ease}
.faq-a-wrap.visible{max-height:60rem}
.faq-sep{height:1px;background:var(--border);margin:0 1.35rem}
.faq-a-text{color:var(--muted);font-weight:300;font-size:.95rem;padding:1rem 1.35rem 1.35rem}

/* ── CONTATO ────────────────────────────────────────────── */
.contact{background:#f5f5f3;color:#121212;border-top:1px solid var(--border)}
.contact .section-label{color:var(--purple)}
.contact .section-label-line{background:var(--purple)}
.contact-inner{max-width:620px;margin:0 auto}
.contact h2{font-size:clamp(1.75rem,4vw,2.6rem);font-weight:500;margin-bottom:.75rem;color:#121212}
.contact-sub{color:#5a5a5a;font-weight:300;margin-bottom:2.5rem}
.form-group{margin-bottom:1.4rem}
.form-group label{display:block;font-family:var(--mono);font-size:.75rem;letter-spacing:.12em;text-transform:uppercase;color:#6a6a6a;margin-bottom:.5rem}
.form-group input,.form-group select,.form-group textarea{width:100%;background:#e8e8e5;border:1px solid #d6d6d2;border-radius:8px;color:#121212;font-family:'Inter',sans-serif;font-size:.95rem;padding:.9rem 1rem;transition:border-color .2s}
.form-group input::placeholder,.form-group textarea::placeholder{color:#9a9a96}
.form-group textarea{min-height:110px;resize:vertical}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{outline:none;border-color:var(--purple)}
.form-submit{width:100%;display:inline-flex;align-items:center;justify-content:center;gap:.6rem;background:var(--green);color:#080808;border:none;font-family:'Inter',sans-serif;font-weight:600;font-size:1rem;padding:1rem 1.7rem;border-radius:100px;transition:transform .2s,box-shadow .2s}
.form-submit:hover{transform:translateY(-2px);box-shadow:0 10px 34px rgba(203,248,108,.28)}

/* ── RODAPÉ ─────────────────────────────────────────────── */
footer{background:var(--bg);border-top:1px solid var(--border);padding:3rem 1.5rem}
@media(min-width:768px){footer{padding:3.5rem 3rem}}
.footer-inner{max-width:1200px;margin:0 auto;display:flex;flex-direction:column;gap:2rem}
@media(min-width:768px){.footer-inner{flex-direction:row;justify-content:space-between;align-items:flex-start}}
.footer-brand p{color:var(--muted);font-weight:300;font-size:.9rem;max-width:320px}
.footer-links{display:flex;flex-direction:column;gap:.7rem;font-family:var(--mono);font-size:.82rem;color:var(--muted)}
.footer-links a{transition:color .2s}
.footer-links a:hover{color:var(--green)}

/* ── WHATSAPP FLUTUANTE ─────────────────────────────────── */
.wa-float{position:fixed;bottom:1.4rem;right:1.4rem;z-index:90;width:56px;height:56px;border-radius:50%;background:#25D366;display:flex;align-items:center;justify-content:center;box-shadow:0 8px 28px rgba(37,211,102,.34);transition:transform .2s}
.wa-float:hover{transform:scale(1.08)}

/* ── ANIMAÇÕES DE SCROLL ────────────────────────────────── */
.anim{opacity:0;transform:translateY(22px);transition:opacity .6s ease,transform .6s ease}
.anim.visible{opacity:1;transform:none}
.anim-delay-1{transition-delay:.08s}
.anim-delay-2{transition-delay:.16s}
.anim-delay-3{transition-delay:.24s}
.anim-delay-4{transition-delay:.32s}
@media(prefers-reduced-motion:reduce){
  .anim{opacity:1;transform:none;transition:none}
  html{scroll-behavior:auto}
}
