/* fuse.css — estilos compartilhados entre as páginas.
   Gerado a partir das regras presentes em 4+ páginas.
   Regras específicas de uma página seguem inline nela. */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
    --purple: #8442F5;
    --purple-claro: #A87BFF;   /* roxo AA para texto pequeno (5,75:1) */
    --green: #00F5A7;
    --black: #080808;
    --black-2: #0F0F0F;
    --black-3: #141414;
    --card: #1A1A1A;
    --white: #F5F5F7;
    --gray: #A1A1AA;
    --font: 'Manrope', sans-serif;
    --r-xs: 4px;
    --r-sm: 10px;
    --r-md: 16px;
    --r-lg: 20px;
    --r-full: 999px;
    --sec-lg: 88px;   /* ancoras: ecossistema, CTA final */
    --sec-md: 64px;   /* padrao dos blocos de conteudo */
    --sec-sm: 48px;   /* transicoes curtas */
    --elev-1: 0 1px 2px rgba(0,0,0,0.28);                                  /* card comum */
    --elev-2: 0 8px 28px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.045); /* card em destaque */
  }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }
/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--purple); border-radius: var(--r-xs); }
/* ─── NAV ─── */
.fuse-nav, body:not(.pilar-page) nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 20px 48px;
    display: flex; align-items: center; justify-content: space-between;
    background: linear-gradient(to bottom, rgba(8,8,8,0.95) 0%, transparent 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(132,66,245,0.08);
  }
.nav-logo img { height: 30px; width: auto; }
.nav-links {
    display: flex; gap: 40px; list-style: none;
    align-items: center; line-height: 1;
    margin: 0; padding: 0;
  }
.nav-links li { margin: 0; padding: 0; }
.nav-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 14px; font-weight: 500; letter-spacing: .03em;
    transition: color .3s;
  }
.nav-links a:hover { color: var(--white); }

/* --- nav: dropdown "O que fazemos" --- */
.nav-drop { position: relative; }
.nav-drop > a::after {
    content: ''; display: inline-block; width: 5px; height: 5px; margin-left: 7px;
    border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
    transform: translateY(-2px) rotate(45deg); transition: transform .25s ease;
  }
.nav-drop:hover > a::after, .nav-drop:focus-within > a::after { transform: translateY(0) rotate(225deg); }
.nav-menu {
    position: absolute; top: calc(100% + 10px); left: 50%;
    transform: translateX(-50%) translateY(-6px);
    min-width: 232px; padding: 8px;
    background: var(--black-3); border: 1px solid rgba(255,255,255,0.09);
    border-radius: var(--r-md); box-shadow: 0 16px 40px rgba(0,0,0,0.5);
    display: flex; flex-direction: column; gap: 2px;
    opacity: 0; visibility: hidden;
    transition: opacity .22s ease, transform .22s ease, visibility .22s;
    z-index: 60;
  }
.nav-drop:hover .nav-menu, .nav-drop:focus-within .nav-menu {
    opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
  }
.nav-menu::before { content: ''; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }
.nav-menu a {
    padding: 10px 12px; border-radius: var(--r-sm);
    font-size: 14px; color: var(--gray); text-decoration: none;
    min-height: 44px; display: flex; align-items: center;
    justify-content: flex-start; text-align: left;
    transition: background .2s, color .2s;
  }
.nav-menu a:hover, .nav-menu a:focus-visible { background: rgba(255,255,255,0.05); color: var(--white); }
@media (prefers-reduced-motion: reduce) {
    .nav-menu, .nav-drop > a::after { transition: none; }
  }

.nav-cta {
    background: var(--purple);
    color: #fff !important;
    padding: 10px 22px;
    border-radius: var(--r-xs);
    font-weight: 600 !important;
    transition: background .3s, transform .2s !important;
  }
.nav-cta:hover { background: #9B5FFB !important; transform: translateY(-1px); }
/* ─── HERO ─── */
.hero-content { position: relative; z-index: 1; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(132,66,245,0.12);
    border: 1px solid rgba(132,66,245,0.3);
    padding: 6px 14px; border-radius: var(--r-full);
    font-size: 12px; font-weight: 600; letter-spacing: .08em;
    color: var(--purple-claro); text-transform: uppercase;
    margin-bottom: 28px;
    animation: fadeUp .8s ease both;
  }
.hero-badge span { width: 6px; height: 6px; background: var(--green); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .5; transform: scale(1.4); }
  }
h1 {
    font-size: clamp(36px, 5.6vw, 68px);
    font-weight: 350; line-height: 1.08;
    letter-spacing: -.03em;
    margin-bottom: 20px;
    animation: fadeUp .8s .1s ease both;
  }
h1 .accent { color: var(--purple); }
h1 .accent-green { color: var(--green); }
.hero-sub {
    font-size: 20px; color: var(--gray); line-height: 1.7; max-width: 480px;
    margin-bottom: 32px;
    animation: fadeUp .8s .2s ease both;
  }
.hero-ctas {
    display: flex; gap: 14px; flex-wrap: wrap;
    animation: fadeUp .8s .3s ease both;
  }
.btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--purple);
    color: #fff; text-decoration: none;
    padding: 14px 28px; border-radius: var(--r-sm);
    font-size: 16px; font-weight: 600;
    transition: background .3s, transform .2s, box-shadow .3s;
    box-shadow: 0 4px 16px rgba(132,66,245,0.18);
  }
.btn-primary:hover {
    background: #9B5FFB;
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(132,66,245,0.34);
  }
.btn-secondary {
    display: inline-flex; align-items: center; gap: 10px;
    border: 1px solid rgba(161,161,170,0.3);
    color: var(--white); text-decoration: none;
    padding: 14px 28px; border-radius: var(--r-sm);
    font-size: 16px; font-weight: 600;
    transition: border-color .3s, transform .2s, background .3s;
  }
.btn-secondary:hover {
    border-color: var(--green); color: var(--green);
    transform: translateY(-2px);
    background: rgba(0,245,167,0.05);
  }
.btn-whatsapp {
    display: inline-flex; align-items: center; gap: 10px;
    background: #25D366;
    color: #fff; text-decoration: none;
    padding: 14px 28px; border-radius: var(--r-sm);
    font-size: 16px; font-weight: 600;
    transition: background .3s, transform .2s;
  }
.btn-whatsapp:hover { background: #1DA851; transform: translateY(-2px); }
/* ─── LOGOS MARQUEE ─── */
.marquee-section {
    padding: 28px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    overflow: hidden; background: rgba(10,10,10,0.5);
  }
.marquee-track {
    display: flex; gap: 60px; align-items: center;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
  }
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
.marquee-item {
    font-size: 14px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
    color: rgba(161,161,170,0.4);
    flex-shrink: 0;
    display: flex; align-items: center; gap: 16px;
  }
.marquee-item::before { content: '✦'; color: var(--purple-claro); font-size: 12px; }
/* ─── SECTIONS COMMON ─── */
section { padding: var(--sec-md) 48px; }
.section-badge {
    display: inline-block;
    font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
    color: var(--green); margin-bottom: 10px;
    padding-left: 20px; position: relative;
  }
.section-badge::before {
    content: ''; position: absolute; left: 0; top: 50%;
    transform: translateY(-50%);
    width: 12px; height: 2px; background: var(--green);
  }
.section-title {
    font-size: clamp(30px, 3.5vw, 46px);
    font-weight: 350; line-height: 1.1; letter-spacing: -.03em;
    margin-bottom: 12px;
    text-wrap: balance;
  }
.section-title .accent { color: var(--purple); }
.section-sub {
    font-size: 16px; color: var(--gray); line-height: 1.7; max-width: 560px;
    margin-bottom: 0;
  }
/* ─── PROBLEMA / SOLUÇÃO ─── */
#problema {
    background: linear-gradient(180deg, var(--black) 0%, var(--black-2) 100%);
  }
/* ─── SERVIÇOS ─── */
#servicos { background: var(--black-3); }
.servicos-header { max-width: 600px; margin-bottom: 20px; }
.servicos-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
    margin-top: 0;
  }
.servico-card {
    background: var(--card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--r-md); padding: 28px 24px;
    position: relative; overflow: hidden;
    transition: transform .3s, border-color .3s, box-shadow .3s;
    cursor: pointer;
  }
.servico-card:hover {
    transform: translateY(-6px);
    border-color: var(--purple);
    box-shadow: 0 20px 60px rgba(132,66,245,0.15);
  }
.servico-card:hover::after { opacity: 1; }
.servico-card.featured {
    border-color: rgba(132,66,245,0.3);
    background: linear-gradient(135deg, rgba(132,66,245,0.08) 0%, var(--card) 100%);
  }
.servico-card.featured::after { opacity: 1; }
.servico-tag {
    font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
    padding: 4px 10px; border-radius: var(--r-xs); margin-bottom: 14px;
    display: inline-block;
  }
.servico-card p { font-size: 14px; color: var(--gray); line-height: 1.6; margin-bottom: 16px; }
.servico-itens {
    display: flex; flex-direction: column; gap: 7px;
  }
.servico-item {
    font-size: 12px; color: var(--gray);
    display: flex; align-items: center; gap: 8px;
  }
.servico-item::before { content: '→'; color: var(--green); font-size: 12px; }
/* ─── VERTICAIS ─── */
#verticais {
    background: linear-gradient(180deg, var(--black-3) 0%, var(--black) 100%);
  }
.verticais-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
    margin-top: 28px;
  }
.vertical-card {
    border-radius: var(--r-lg); padding: 36px;
    position: relative; overflow: hidden;
    transition: transform .3s;
  }
.vertical-card:hover { transform: translateY(-4px); }
.vertical-card.saude {
    background: linear-gradient(135deg, #001A2E 0%, #00121F 100%);
    border: 1px solid rgba(0,245,167,0.2);
  }
.vertical-card.industrial {
    background: linear-gradient(135deg, #1A0033 0%, #110022 100%);
    border: 1px solid rgba(132,66,245,0.2);
  }
.vertical-tag {
    font-size: 12px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase;
    padding: 5px 12px; border-radius: var(--r-xs); margin-bottom: 16px; display: inline-block;
  }
.tag-vert-green { background: rgba(0,245,167,0.1); color: var(--green); border: 1px solid rgba(0,245,167,0.2); }
.tag-vert-purple { background: rgba(132,66,245,0.1); color: var(--purple-claro); border: 1px solid rgba(132,66,245,0.2); }
.vertical-card h3 { font-size: 26px; font-weight: 600; margin-bottom: 6px; }
.vertical-subtitle { font-size: 14px; color: var(--gray); margin-bottom: 20px; }
.vertical-itens {
    display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px;
  }
.vertical-item {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 14px; color: rgba(245,245,247,0.8);
  }
.vertical-item::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.vertical-card.industrial .vertical-item::before { color: var(--purple); }
.vertical-cta {
    font-size: 14px; font-weight: 600;
    display: flex; align-items: center; gap: 8px;
    text-decoration: none;
    transition: gap .3s;
  }
.vertical-cta.green { color: var(--green); }
.vertical-cta.purple { color: var(--purple); }
.vertical-cta:hover { gap: 14px; }
/* ─── COMO FUNCIONA ─── */
#processo { background: var(--black); }
.step-card h4, .step-card h3 { font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.step-card p { font-size: 12px; color: var(--gray); line-height: 1.6; }
/* ─── DIFERENCIAIS ─── */
.diferenciais-grid {
    display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px;
    margin-top: 28px;
  }
.diferencial-card h4, .diferencial-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.diferencial-card p { font-size: 14px; color: var(--gray); line-height: 1.6; }
/* ─── CTA SECTION ─── */
#cta-section {
    background: linear-gradient(135deg, #0E0218 0%, var(--black) 50%, #001A0E 100%);
    text-align: center;
    position: relative; overflow: hidden;
  }
.cta-glow {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 400px;
    background: radial-gradient(ellipse, rgba(132,66,245,0.15) 0%, transparent 65%);
  }
.cta-content h2 {
    font-size: clamp(30px, 3.5vw, 46px);
    font-weight: 350; letter-spacing: -.03em; line-height: 1.1;
    margin-bottom: 20px;
  }
.cta-content h2 .accent { color: var(--green); }
.cta-content p { font-size: 16px; color: var(--gray); margin-bottom: 44px; line-height: 1.7; }
.cta-group {
    display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
    margin-bottom: 32px;
  }
.cta-disclaimer {
    font-size: 12px; color: rgba(161,161,170,0.5);
  }
/* ─── FOOTER ─── */
footer {
    background: var(--black-3);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 48px 48px 32px;
  }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a {
    font-size: 14px; color: rgba(245,245,247,0.6);
    text-decoration: none; transition: color .3s;
  }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 12px; color: rgba(161,161,170,0.4);
  }
.footer-bottom a { color: var(--purple); text-decoration: none; }
/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
.reveal {
    opacity: 1; transform: translateY(0);
    transition: opacity .7s ease, transform .7s ease;
  }
.reveal.visible { opacity: 1; transform: translateY(0); }
/* ─── FLOATING WPP ─── */
.wpp-float {
    position: fixed; bottom: 32px; right: 32px; z-index: 90;
    display: flex; align-items: center; gap: 12px;
    background: #25D366; color: #fff;
    text-decoration: none;
    padding: 14px 22px 14px 18px;
    border-radius: var(--r-full);
    font-size: 14px; font-weight: 600;
    box-shadow: 0 8px 40px rgba(37,211,102,0.4);
    transition: transform .3s, box-shadow .3s;
  }
.wpp-float:hover { transform: translateY(-3px); box-shadow: 0 12px 50px rgba(37,211,102,0.5); }
.wpp-float svg { width: 22px; height: 22px; fill: #fff; }
/* ─── RESPONSIVE ─── */
/* ─── DROPDOWN SERVIÇOS ─── */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { cursor: pointer; }
.nav-dropdown-menu {
    display: none !important;
    position: absolute; top: 100%; left: 50%;
    transform: translateX(-50%);
    padding-top: 16px;
    background: transparent;
    z-index: 200;
    flex-direction: column;
  }
.nav-dropdown-menu::after {
    content: '';
    position: absolute;
    inset: 16px 0 0 0;
    background: rgba(15,15,15,0.98);
    border: 1px solid rgba(132,66,245,0.2);
    border-radius: var(--r-sm);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    z-index: -1;
  }
.nav-dropdown-menu::before {
    content: '';
    position: absolute; top: 11px; left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 10px; height: 10px;
    background: rgba(15,15,15,0.98);
    border-left: 1px solid rgba(132,66,245,0.2);
    border-top: 1px solid rgba(132,66,245,0.2);
    z-index: 1;
  }
.nav-dropdown:hover > .nav-dropdown-menu { display: flex !important; }
.nav-dropdown-menu a {
    padding: 10px 14px; border-radius: var(--r-sm);
    font-size: 14px; font-weight: 500; color: var(--gray) !important;
    text-decoration: none; transition: background .2s, color .2s;
    white-space: nowrap;
    position: relative; z-index: 1;
  }
.nav-dropdown-menu a:hover { background: rgba(132,66,245,0.1); color: var(--white) !important; }
/* ─── MENU MOBILE ─── */
.hamburger {
    display: none;
    flex-direction: column; justify-content: center;
    gap: 5px; cursor: pointer; padding: 4px;
    background: none; border: none; z-index: 201;
  }
.hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--white);
    border-radius: var(--r-xs);
    transition: transform .35s, opacity .35s, width .35s;
    transform-origin: center;
  }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-drawer {
    display: flex;
    position: fixed; top: 0; right: 0;
    width: min(320px, 85vw); height: 100vh;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid rgba(132,66,245,0.15);
    z-index: 10000;
    padding: 100px 32px 40px;
    flex-direction: column; gap: 8px;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
    visibility: hidden;
  }
.mobile-drawer.open { transform: translateX(0); visibility: visible; }
.mobile-overlay {
    display: block;
    position: fixed; inset: 0;
    background: rgba(3,3,5,0.98);
    backdrop-filter: blur(24px) saturate(60%);
    -webkit-backdrop-filter: blur(24px) saturate(60%);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s;
  }
.mobile-overlay.open { opacity: 1; pointer-events: all; }
.mobile-drawer a {
    color: var(--gray);
    text-decoration: none;
    font-size: 16px; font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: block;
    transition: color .2s;
  }
.mobile-drawer a:hover { color: var(--white); }
.mobile-drawer .mobile-section-label {
    font-size: 12px; font-weight: 600; letter-spacing: .12em;
    text-transform: uppercase; color: var(--purple-claro);
    margin: 20px 0 4px;
  }
.mobile-drawer .mobile-sub {
    padding-left: 12px;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.03);
  }
.mobile-drawer .mobile-cta {
    margin-top: 24px;
    background: var(--purple);
    color: #fff !important;
    padding: 14px 24px;
    border-radius: var(--r-sm);
    font-weight: 600 !important;
    text-align: center;
    border-bottom: none !important;
    transition: background .3s !important;
  }
.mobile-drawer .mobile-cta:hover { background: #9B5FFB !important; }
@media (max-width: 900px) {
    .hamburger { display: flex; }
    .mobile-drawer { display: flex; }
    .mobile-overlay { display: block; }
  }
@media (max-width: 900px) {
    .nav-logo img { height: 26px; }
    section { scroll-margin-top: 80px; }
    .section-badge { margin-top: 0; }

    /* ── Fix: etiquetas e títulos não cortam no mobile ── */
    .section-badge,
    .hero-badge,
    .servico-tag,
    .vertical-tag {
      max-width: 100%;
      white-space: normal;
      word-break: break-word;
      overflow-wrap: break-word;
      box-sizing: border-box;
    }
    .section-title,
    h1, h2, h3, h4 {
      word-break: normal;
      overflow-wrap: normal;
      hyphens: none;
    }
  }
/* HAMBURGER FIXED POSITION - fora do fluxo da nav */
#hamburgerBtn {
    position: fixed !important;
    top: 16px;
    right: 20px;
    z-index: 20000 !important;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }
@media (max-width: 900px) {
    #hamburgerBtn { display: flex !important; }
  }
/* --- CONSENTIMENTO LGPD --- */
.lgpd {
    position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 1000;
    max-width: 560px;
    background: var(--black-2);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--r-md);
    padding: 20px 22px;
    box-shadow: 0 18px 50px rgba(0,0,0,0.6);
    display: none;
  }
.lgpd[data-open="true"] { display: block; }
.lgpd h2 { font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 7px; letter-spacing: -.01em; }
.lgpd p { font-size: 14px; color: var(--gray); line-height: 1.6; margin-bottom: 15px; }
.lgpd p a { color: var(--green); text-decoration: underline; text-underline-offset: 2px; }
.lgpd-acoes { display: flex; gap: 9px; flex-wrap: wrap; }
.lgpd-btn {
    flex: 1 1 auto; min-height: 44px; padding: 11px 18px;
    border-radius: var(--r-sm); font-size: 14px; font-weight: 600;
    font-family: var(--font); cursor: pointer; border: 1px solid transparent;
    transition: opacity .2s ease, border-color .2s ease;
  }
.lgpd-btn:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; }
.lgpd-aceitar { background: var(--green); color: var(--black); }
.lgpd-aceitar:hover { opacity: .88; }
.lgpd-recusar { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.22); }
.lgpd-recusar:hover { border-color: rgba(255,255,255,0.45); }
@media (max-width: 640px) {
    .topo { padding: 16px 20px; }
    :root { --sec-lg: 56px; --sec-md: 44px; --sec-sm: 34px; }
    .lgpd { left: 10px; right: 10px; bottom: 10px; padding: 14px 16px; max-width: none; }
    .lgpd h2 { font-size: 14px; margin-bottom: 4px; }
    .lgpd p { font-size: 12.5px; line-height: 1.45; margin-bottom: 10px; }
    .lgpd-acoes { flex-direction: row; gap: 8px; }
    .lgpd-btn { flex: 1 1 0; min-height: 40px; padding: 9px 10px; font-size: 13px; }
  }
/* --- ACESSIBILIDADE --- */
:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; border-radius: var(--r-xs); }
.pular-conteudo {
    position: absolute; left: 12px; top: -60px; z-index: 2000;
    background: var(--green); color: var(--black);
    padding: 12px 20px; border-radius: var(--r-sm);
    font-size: 14px; font-weight: 600; text-decoration: none;
    transition: top .2s ease;
  }
.pular-conteudo:focus { top: 12px; }
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: .01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: .01ms !important;
      scroll-behavior: auto !important;
    }
  }
/* --- HOVER: substitui os handlers inline --- */
.hv-card {
    transition: border-color .25s ease, transform .25s ease;
  }
.hv-card:hover {
    border-color: rgba(132,66,245,0.35) !important;
    transform: translateY(-4px);
  }
.hv-card-verde:hover { border-color: rgba(0,245,167,0.35) !important; }
.hv-card-azul:hover  { border-color: rgba(55,138,221,0.35) !important; }
.hv-socio {
    transition: transform .3s ease, border-color .3s ease;
  }
.hv-socio:hover {
    transform: translateY(-6px);
    border-color: rgba(132,66,245,0.3) !important;
  }
.hv-socio-verde:hover { border-color: rgba(0,245,167,0.3) !important; }
.hv-input {
    transition: border-color .25s ease, transform .25s ease;
  }
.hv-input:hover {
    border-color: #8442F5 !important;
    transform: translateY(-2px);
  }
.hv-link { transition: color .25s ease; }
.hv-link:hover { color: var(--white) !important; }
@media (prefers-reduced-motion: reduce) {
    .hv-card:hover, .hv-socio:hover, .hv-input:hover { transform: none; }
  }
h2 { font-size: clamp(23px, 2.6vw, 30px); font-weight: 500; letter-spacing: -.025em;
    line-height: 1.15; margin-bottom: 14px; }
.sub { font-size: 16px; color: var(--gray); line-height: 1.7; max-width: 64ch; margin-bottom: 30px; }
.outro strong { font-size: 16px; font-weight: 600; color: var(--white); }
.rodape { border-top: 1px solid rgba(255,255,255,0.08); padding: 30px 24px; }
.lista li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; color: var(--gray); }
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  }
.destaque p:last-child { margin-bottom: 0; }
.btn { min-height: 48px; padding: 13px 26px; border-radius: var(--r-sm); font-size: 14px;
    font-weight: 600; text-decoration: none; display: inline-flex; align-items: center;
    justify-content: center; gap: 9px; transition: opacity .2s ease, border-color .2s ease; }
.wrap { max-width: 1440px; margin: 0 auto; padding: 0 48px; }
.destaque a:hover { text-decoration: underline; }
/* espaco para o header fixo */
.topo ~ main, .topo + main, body > main { padding-top: 86px; }
.pilar-page section { padding: var(--sec-md) 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.destaque a { color: var(--green); font-weight: 600; text-decoration: none; }
h1 { font-size: clamp(30px, 3.5vw, 46px); font-weight: 350; line-height: 1.06;
    letter-spacing: -.03em; margin-bottom: 18px; max-width: 17ch; }
.hero { padding: 64px 0 52px; border-bottom: 1px solid rgba(255,255,255,0.07); }
a { color: inherit; }
.trilha a { color: rgba(161,161,170,0.7); text-decoration: none; }
.card-ico { color: var(--green); margin-bottom: 13px; }
.rodape-in { max-width: 1000px; margin: 0 auto; display: flex; justify-content: space-between;
    gap: 16px; flex-wrap: wrap; font-size: 12px; color: rgba(161,161,170,0.6); }
.topo-in { display: flex; align-items: center;
    justify-content: space-between; gap: 16px; }
.lead { font-size: 16px; color: var(--gray); line-height: 1.7; max-width: 62ch; margin-bottom: 30px; }
.btn-p:hover { opacity: .88; }
.btn-p { background: var(--green); color: var(--black); }
.destaque { background: linear-gradient(135deg, rgba(132,66,245,0.1), rgba(0,245,167,0.05));
    border: 1px solid rgba(132,66,245,0.22); border-radius: var(--r-md); padding: 28px 26px; }
.topo-nav a:hover { color: var(--white); }
.lista svg { color: var(--green); flex: none; margin-top: 3px; }
section:last-of-type { border-bottom: none; }
.card { background: var(--card); border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--r-md); padding: 24px 22px; }

.badge { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600;
    letter-spacing: .12em; text-transform: uppercase; color: var(--green);
    background: rgba(0,245,167,0.08); border: 1px solid rgba(0,245,167,0.22);
    border-radius: var(--r-full); padding: 7px 14px; margin-bottom: 18px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.outro span { display: block; font-size: 12px; font-weight: 600; letter-spacing: .11em;
    text-transform: uppercase; color: var(--purple-claro); margin-bottom: 6px; }
.outro { background: var(--card); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--r-sm);
    padding: 18px 20px; text-decoration: none; display: block; transition: border-color .2s ease; }
.cta-final h2 { margin-bottom: 12px; }
.trilha a:hover { color: var(--white); }
.destaque h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; letter-spacing: -.02em; }
.marca span { color: var(--green); }
.topo-cta { background: var(--green); color: var(--black) !important; padding: 10px 18px;
    border-radius: var(--r-sm); font-weight: 600; font-size: 14px; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.rodape-in a { color: rgba(161,161,170,0.75); text-decoration: none; }
.cta-final .sub { margin: 0 auto 26px; }
.destaque p { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 16px; }
.outros { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 12px; }
.topo-nav a { font-size: 14px; color: var(--gray); text-decoration: none;
    min-height: 44px; display: inline-flex; align-items: center; }
.lista { list-style: none; display: flex; flex-direction: column; gap: 13px; }
@media (max-width: 640px) {
    .wrap { padding: 0 20px; }
    .hero { padding: 40px 0 36px; }
    .pilar-page section { padding: var(--sec-md) 0; }
    .hero-ctas .btn { width: 100%; }
  }
.card h3 { font-size: 16px; font-weight: 600; letter-spacing: -.015em; margin-bottom: 8px; }
body { font-family: var(--font); background: var(--black); color: var(--white);
    -webkit-font-smoothing: antialiased; line-height: 1.6; }
.card p { font-size: 14px; color: var(--gray); line-height: 1.65; }
.outro:hover { border-color: rgba(132,66,245,0.4); }
.topo-nav { display: flex; gap: 22px; align-items: center; }
h1 b { color: var(--green); font-weight: 700; }
.lista b { color: var(--white); font-weight: 600; }
.btn-s { border: 1px solid rgba(255,255,255,0.2); color: var(--white); }
.marca { font-size: 16px; font-weight: 600; letter-spacing: -.02em; text-decoration: none; }
.trilha { font-size: 12px; color: rgba(161,161,170,0.7); margin-bottom: 20px; }
.cta-final { text-align: center; padding: 60px 0; }
@media (max-width: 720px) { .topo-nav a:not(.topo-cta) { display: none; } }
.btn-s:hover { border-color: rgba(255,255,255,0.45); }
