:root {
  --navy:      #0d1b3e;
  --navy-mid:  #1a2558;
  --navy-soft: #243070;
  --violet:    #3d3580;
  --cyan:      #4db8e8;
  --green:     #7fd0f2;
  --amber:     #f59e0b;
  --red:       #ef4444;
  --white:     #ffffff;
  --text-muted:#8fa4c8;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 999; opacity: .4;
}
h1,h2,h3,h4 { font-family: 'Syne', sans-serif; line-height: 1.15; }
.label {
  font-family: 'Syne', sans-serif;
  font-size: .7rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--cyan); font-weight: 600;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 5%;
  background: rgba(13,27,62,.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(77,184,232,.12);
  transition: background .3s;
}
.nav-logo { display: flex; align-items: center; gap: .8rem; text-decoration: none; }
.nav-logo img { width: 92px; height: 92px; object-fit: contain; display:block; image-rendering:auto; }
.nav-logo span { font-family:'Syne',sans-serif; font-weight:700; font-size:1.18rem; color:var(--white); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { color: var(--white); text-decoration: none; font-size: 1.1rem; font-weight:700; transition: color .2s; }
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  color: var(--white); border: none; padding: .6rem 1.6rem;
  border-radius: 30px; cursor: pointer; font-family:'Syne',sans-serif;
  font-weight:600; font-size:.85rem; letter-spacing:.05em;
  transition: opacity .2s, transform .2s;
}
.nav-cta:hover { opacity:.85; transform:translateY(-1px); }
.nav-toggle {
  display:none; align-items:center; justify-content:center;
  width:42px; height:42px; border:1px solid rgba(255,255,255,.2);
  border-radius:14px; background:rgba(255,255,255,.08); color:var(--white);
  cursor:pointer; transition:background .2s, border-color .2s;
}
.nav-toggle:hover { background:rgba(77,184,232,.14); border-color:rgba(77,184,232,.45); }
.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content:''; display:block; width:18px; height:2px; border-radius:999px;
  background:currentColor; transition:transform .2s, opacity .2s;
}
.nav-toggle { flex-direction:column; gap:4px; }
.nav-toggle.is-open span { opacity:0; }
.nav-toggle.is-open::before { transform:translateY(6px) rotate(45deg); }
.nav-toggle.is-open::after { transform:translateY(-6px) rotate(-45deg); }

/* HERO */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  align-items: center; gap: clamp(2rem, 5vw, 6rem);
  padding: 8rem 7% 5rem; text-align: left;
  position: relative; overflow: hidden;
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(77,184,232,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77,184,232,.06) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridDrift 20s linear infinite;
}
@keyframes gridDrift { from { background-position:0 0; } to { background-position:60px 60px; } }
.hero::after {
  content:''; position:absolute; top:-20%; left:50%; transform:translateX(-50%);
  width:800px; height:800px;
  background: radial-gradient(circle, rgba(61,53,128,.35) 0%, transparent 70%);
  pointer-events:none; z-index:0;
}
.hero-content { position:relative; z-index:1; max-width:720px; }
.hero-label {
  display:inline-block;
  background: rgba(77,184,232,.12); border: 1px solid rgba(77,184,232,.3);
  border-radius:30px; padding:.35rem 1.1rem;
  font-family:'Syne',sans-serif; font-size:.72rem; letter-spacing:.18em; text-transform:uppercase;
  color:var(--cyan); margin-bottom:2rem;
  animation: fadeUp .8s ease both;
}
.hero h1 {
  font-size: clamp(2.3rem, 4.6vw, 4.4rem); font-weight:800; line-height:1.08; margin-bottom:1.5rem;
  animation: fadeUp .8s .15s ease both;
}
.hero h1 em {
  font-style:normal;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--green) 100%);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem); color:var(--text-muted);
  max-width:660px; margin:0 auto 2.5rem; line-height:1.75;
  animation: fadeUp .8s .3s ease both;
}
.hero-actions {
  display:flex; gap:1rem; justify-content:flex-start; flex-wrap:wrap;
  animation: fadeUp .8s .45s ease both;
}
.hero-visual {
  position:relative; z-index:1; width:min(100%, 520px); justify-self:end;
  display:flex; align-items:center; justify-content:center;
  animation: fadeUp .9s .25s ease both;
}
.hero-visual::before,
.hero-visual::after {
  content:''; position:absolute; border:1px solid rgba(77,184,232,.24);
  border-radius:50%; pointer-events:none;
}
.hero-visual::before { inset:4%; animation: radarPulse 3.8s ease-in-out infinite; }
.hero-visual::after { inset:-7%; border-color:rgba(77,184,232,.1); animation: radarPulse 3.8s 1.2s ease-in-out infinite; }
.hero-visual img {
  display:block; width:100%; aspect-ratio:1; object-fit:cover; border-radius:50%;
  filter: drop-shadow(0 0 30px rgba(77,184,232,.28));
}
.hero-visual-caption {
  position:absolute; right:-1rem; bottom:7%; max-width:230px;
  padding:.7rem 1rem; border:1px solid rgba(77,184,232,.35);
  border-radius:12px; background:rgba(13,27,62,.88); color:var(--white);
  font-size:.78rem; line-height:1.45; box-shadow:0 12px 30px rgba(0,0,0,.25);
}
@keyframes radarPulse { 0%,100% { transform:scale(.98); opacity:.55; } 50% { transform:scale(1.03); opacity:1; } }
.btn-primary {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--violet) 100%);
  color:var(--white); border:none; padding:.9rem 2.4rem;
  border-radius:50px; cursor:pointer;
  font-family:'Syne',sans-serif; font-weight:700; font-size:.95rem; letter-spacing:.04em;
  box-shadow: 0 0 30px rgba(77,184,232,.3);
  transition: transform .2s, box-shadow .2s; text-decoration:none; display:inline-block;
}
.btn-primary:hover { transform:translateY(-2px); box-shadow:0 0 50px rgba(77,184,232,.5); }
.btn-ghost {
  background:transparent; color:var(--white); border:1px solid rgba(255,255,255,.22);
  padding:.9rem 2.4rem; border-radius:50px; cursor:pointer;
  font-family:'Syne',sans-serif; font-weight:600; font-size:.95rem;
  transition:border-color .2s, background .2s; text-decoration:none; display:inline-block;
}
.btn-ghost:hover { border-color:var(--cyan); background:rgba(77,184,232,.08); }

/* STATS */
.stats-strip {
  background: rgba(26,37,88,.7);
  border-top:1px solid rgba(77,184,232,.12); border-bottom:1px solid rgba(77,184,232,.12);
  padding:2.2rem 5%;
  display:flex; justify-content:center; gap:4rem; flex-wrap:wrap;
}
.stat { text-align:center; }
.stat-num {
  font-family:'Syne',sans-serif; font-size:2rem; font-weight:800;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
}
.stat-label { font-size:.8rem; color:var(--text-muted); margin-top:.2rem; }

/* SECTION */
section { padding: 6rem 5%; }
.section-header { text-align:center; margin-bottom:4rem; }
.section-header h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight:800; margin-bottom:1rem; }
.section-header p { color:var(--text-muted); font-size:1.05rem; max-width:580px; margin:0 auto; line-height:1.75; }

/* PAINS — EXPANDIDA */
.pains { background: var(--navy); }
.pains-intro {
  max-width:780px; margin: 0 auto 3.5rem; text-align:center;
}
.pains-intro p {
  font-size:1.1rem; color:var(--text-muted); line-height:1.8;
}
.pains-intro strong { color:var(--white); }
.pains-grid {
  display:grid; grid-template-columns:repeat(auto-fit, minmax(300px, 1fr));
  gap:1.5rem; max-width:1300px; margin:0 auto;
}
.pain-card {
  background: rgba(26,37,88,.5);
  border:1px solid rgba(239,68,68,.2);
  border-radius:18px; padding:2.2rem;
  position:relative; overflow:hidden;
  transition: transform .3s, box-shadow .3s;
}
.pain-card::before {
  content:'';
  position:absolute; top:0; left:0; right:0; height:3px;
  background: linear-gradient(90deg, var(--red), #f97316);
}
.pain-card:hover { transform:translateY(-5px); box-shadow:0 24px 48px rgba(0,0,0,.35); }
.pain-icon { width:50px; height:50px; background:rgba(239,68,68,.12); border-radius:13px; display:flex; align-items:center; justify-content:center; font-size:1.5rem; margin-bottom:1.2rem; }
.pain-card h3 { font-size:1rem; font-weight:700; margin-bottom:.7rem; color:var(--white); }
.pain-card p { font-size:.88rem; color:var(--text-muted); line-height:1.7; }
.pain-card .pain-impact {
  margin-top:1rem; padding:.6rem .9rem;
  background:rgba(239,68,68,.07); border-left:3px solid rgba(239,68,68,.4);
  border-radius:0 8px 8px 0;
  font-size:.8rem; color:#fca5a5; font-style:italic;
}

/* REVEAL SECTION */
.reveal-section {
  background: linear-gradient(180deg, var(--navy) 0%, #0a1229 100%);
  text-align:center; padding:7rem 5%;
}
.reveal-section h2 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight:800; margin-bottom:1.5rem; }
.reveal-section h2 span {
  background: linear-gradient(135deg, var(--cyan), var(--green));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
}
.reveal-section p { color:var(--text-muted); font-size:1.1rem; max-width:700px; margin:0 auto 3rem; line-height:1.8; }

/* FLOW */
.flow-section { background:#070e24; padding:6rem 5%; }
.flow-wrap { max-width:1100px; margin:0 auto; }
.flow-steps {
  display:flex; align-items:flex-start;
  overflow-x:auto; padding-bottom:1rem; gap:0;
}
.flow-step {
  flex:1; min-width:160px; text-align:center;
  padding:1.5rem 1rem; position:relative;
}
.flow-step:not(:last-child)::after {
  content:'→'; position:absolute; right:-12px; top:38%; transform:translateY(-50%);
  color:var(--cyan); font-size:1.2rem; z-index:1;
}
.flow-num {
  width:52px; height:52px;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  border-radius:50%; display:flex; align-items:center; justify-content:center;
  font-family:'Syne',sans-serif; font-weight:800; font-size:1.1rem;
  margin:0 auto 1rem; box-shadow:0 0 20px rgba(77,184,232,.3);
}
.flow-step h4 { font-size:.85rem; font-weight:700; margin-bottom:.4rem; }
.flow-step p { font-size:.78rem; color:var(--text-muted); line-height:1.5; }

/* AI SECTION */
.ai-section {
  background: linear-gradient(135deg, #070e24, #0d1b3e, #070e24);
  padding: 7rem 5%; position:relative; overflow:hidden;
}
.ai-section::before {
  content:'';
  position:absolute; top:0; left:50%; transform:translateX(-50%);
  width:700px; height:700px;
  background: radial-gradient(circle, rgba(77,184,232,.08) 0%, transparent 65%);
  pointer-events:none;
}
.ai-inner {
  max-width:1200px; margin:0 auto;
  display:grid; grid-template-columns:1fr 1fr; gap:5rem; align-items:center;
  position:relative; z-index:1;
}
.ai-text .label { margin-bottom:1rem; }
.ai-text h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight:800; margin-bottom:1.2rem; }
.ai-text h2 em {
  font-style:normal;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
}
.ai-text p { color:var(--text-muted); line-height:1.8; margin-bottom:1.1rem; font-size:.98rem; }
.ai-highlight {
  background: rgba(77,184,232,.06); border:1px solid rgba(77,184,232,.2);
  border-radius:14px; padding:1.5rem; margin-top:1.5rem;
}
.ai-highlight h4 {
  font-family:'Syne',sans-serif; font-size:.8rem; color:var(--cyan);
  letter-spacing:.12em; text-transform:uppercase; margin-bottom:1rem;
}
.ai-blend-item { display:flex; gap:.8rem; align-items:flex-start; margin-bottom:.7rem; }
.ai-blend-dot {
  width:8px; height:8px; border-radius:50%; background:var(--cyan);
  flex-shrink:0; margin-top:.35rem;
}
.ai-blend-item span { font-size:.88rem; color:var(--text-muted); line-height:1.55; }
.ai-blend-item span strong { color:var(--white); }

.ai-cards { display:flex; flex-direction:column; gap:1rem; }
.ai-card {
  background: rgba(26,37,88,.5); border:1px solid rgba(77,184,232,.15);
  border-radius:16px; padding:1.6rem;
  display:flex; gap:1.2rem; align-items:flex-start;
  transition: transform .2s, border-color .2s;
}
.ai-card:hover { transform:translateX(5px); border-color:rgba(77,184,232,.35); }
.ai-card-icon {
  width:48px; height:48px; border-radius:12px; flex-shrink:0;
  background: linear-gradient(135deg, rgba(77,184,232,.15), rgba(61,53,128,.2));
  border:1px solid rgba(77,184,232,.2);
  display:flex; align-items:center; justify-content:center; font-size:1.4rem;
}
.ai-card-body h4 { font-size:.92rem; font-weight:700; margin-bottom:.35rem; }
.ai-card-body p { font-size:.82rem; color:var(--text-muted); line-height:1.55; }

/* FEATURES */
.features { background:var(--navy); }
.features-grid {
  display:grid; grid-template-columns:repeat(auto-fit, minmax(300px, 1fr));
  gap:1.5rem; max-width:1300px; margin:0 auto;
}
.feature-card {
  background:rgba(26,37,88,.4); border:1px solid rgba(77,184,232,.15);
  border-radius:20px; padding:2rem;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.feature-card:hover {
  transform:translateY(-6px); border-color:rgba(77,184,232,.4);
  box-shadow:0 24px 48px rgba(0,0,0,.35);
}
.feature-icon {
  width:54px; height:54px;
  background: linear-gradient(135deg, rgba(77,184,232,.15), rgba(61,53,128,.2));
  border:1px solid rgba(77,184,232,.2); border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  font-size:1.5rem; margin-bottom:1.3rem;
}
.feature-card h3 { font-size:1rem; font-weight:700; margin-bottom:.6rem; }
.feature-card p { font-size:.87rem; color:var(--text-muted); line-height:1.65; }
.feature-tag {
  display:inline-block; margin-top:1rem;
  background:rgba(77,184,232,.1); border:1px solid rgba(77,184,232,.25);
  border-radius:20px; padding:.25rem .8rem;
  font-size:.72rem; color:var(--green); letter-spacing:.08em; font-family:'Syne',sans-serif;
}

/* TECH PROP */
.tech-prop {
  background: linear-gradient(135deg, #070e24 0%, #0d1b3e 50%, #0a1229 100%);
  padding:7rem 5%;
}
.tech-prop-inner {
  max-width:1100px; margin:0 auto;
  display:grid; grid-template-columns:1fr 1fr; gap:5rem; align-items:center;
}
.tech-prop-text .label { margin-bottom:1rem; }
.tech-prop-text h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight:800; margin-bottom:1.2rem; }
.tech-prop-text h2 span {
  background: linear-gradient(135deg, var(--amber), #f97316);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
}
.tech-prop-text p { color:var(--text-muted); line-height:1.78; margin-bottom:1rem; font-size:.97rem; }
.model-box {
  background:rgba(245,158,11,.06); border:1px solid rgba(245,158,11,.2);
  border-radius:14px; padding:1.5rem; margin-top:1.5rem;
}
.model-box h4 {
  font-family:'Syne',sans-serif; font-size:.78rem; color:var(--amber);
  letter-spacing:.12em; text-transform:uppercase; margin-bottom:.9rem;
}
.model-item { display:flex; gap:.7rem; align-items:flex-start; margin-bottom:.55rem; }
.model-dot { width:6px; height:6px; border-radius:50%; background:var(--amber); flex-shrink:0; margin-top:.35rem; }
.model-item span { font-size:.86rem; color:var(--text-muted); line-height:1.5; }

.tech-prop-visual { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.lv-card {
  background:rgba(26,37,88,.5); border:1px solid rgba(77,184,232,.15);
  border-radius:14px; padding:1.4rem; transition:transform .2s;
}
.lv-card:hover { transform:scale(1.03); }
.lv-card .lv-icon { font-size:1.4rem; margin-bottom:.6rem; }
.lv-card h4 { font-size:.84rem; font-weight:700; margin-bottom:.3rem; }
.lv-card p { font-size:.77rem; color:var(--text-muted); line-height:1.5; }

/* IMPACT — CORRIGIDO */
.impact { background:var(--navy); padding:6rem 5%; }
.impact-grid {
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:1.5rem; max-width:1100px; margin:0 auto;
}
.impact-card {
  background:rgba(26,37,88,.4); border:1px solid rgba(77,184,232,.15);
  border-radius:18px; padding:2rem 1.5rem; text-align:center;
  transition: transform .3s, box-shadow .3s;
  display:flex; flex-direction:column; align-items:center;
}
.impact-card:hover { transform:translateY(-5px); box-shadow:0 0 40px rgba(77,184,232,.12); }
.impact-icon { font-size:2rem; margin-bottom:.8rem; }
.impact-num {
  font-family:'Syne',sans-serif; font-size:1.5rem; font-weight:800;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  margin-bottom:.6rem; white-space:nowrap;
}
.impact-title { font-family:'Syne',sans-serif; font-size:.95rem; font-weight:700; margin-bottom:.5rem; }
.impact-card p { font-size:.84rem; color:var(--text-muted); line-height:1.6; }

/* TECH STACK */
.tech { background:#070e24; padding:5rem 5%; }
.tech-content { max-width:860px; margin:0 auto; text-align:center; }
.tech-badges { display:flex; flex-wrap:wrap; gap:1rem; justify-content:center; margin-top:2.5rem; }
.badge {
  background:rgba(26,37,88,.6); border:1px solid rgba(77,184,232,.2);
  border-radius:30px; padding:.55rem 1.3rem;
  font-family:'Syne',sans-serif; font-size:.8rem; font-weight:600;
  color:var(--cyan); letter-spacing:.05em;
  transition:background .2s, border-color .2s;
}
.badge:hover { background:rgba(77,184,232,.12); border-color:var(--cyan); }

/* SCREENS */
.screens { background:var(--navy); padding:6rem 5%; }
.screens-scroll {
  display:flex; gap:1.5rem; overflow-x:auto;
  padding-bottom:1.5rem; max-width:1200px; margin:0 auto;
  scrollbar-width:thin; scrollbar-color:rgba(77,184,232,.3) transparent;
}
.screen-card {
  flex:0 0 320px; background:rgba(26,37,88,.5);
  border:1px solid rgba(77,184,232,.15); border-radius:16px; overflow:hidden;
  transition: transform .3s, box-shadow .3s;
}
.screen-card:hover { transform:translateY(-4px) scale(1.01); box-shadow:0 20px 50px rgba(0,0,0,.5); }
.screen-bar {
  background:rgba(13,27,62,.8); padding:.7rem 1rem;
  display:flex; align-items:center; gap:.5rem;
}
.screen-dot { width:8px; height:8px; border-radius:50%; }
.sd1 { background:#ef4444; } .sd2 { background:var(--amber); } .sd3 { background:var(--green); }
.screen-title { font-size:.7rem; color:var(--text-muted); margin-left:.5rem; font-family:'Syne',sans-serif; }
.screen-body {
  padding:1.5rem;
  background: linear-gradient(180deg, rgba(10,18,41,.9), rgba(13,27,62,.7));
  min-height:180px; display:flex; flex-direction:column; gap:.8rem;
}
.fake-chart { height:80px; display:flex; align-items:flex-end; gap:4px; }
.bar {
  flex:1; border-radius:4px 4px 0 0;
  background: linear-gradient(180deg, var(--cyan), var(--violet));
  opacity:.7; animation: barGrow 1.5s ease both;
}
@keyframes barGrow {
  from { transform:scaleY(0); transform-origin:bottom; }
  to   { transform:scaleY(1); transform-origin:bottom; }
}
.fake-row { height:10px; background:rgba(77,184,232,.15); border-radius:4px; }
.fake-row.green { background:rgba(77,184,232,.2); }
.fake-row.short { width:60%; }
.fake-kpi { display:flex; gap:.8rem; }
.kpi-box { flex:1; background:rgba(26,37,88,.6); border-radius:8px; padding:.8rem; text-align:center; }
.kpi-val { font-family:'Syne',sans-serif; font-size:1rem; font-weight:700; color:var(--cyan); }
.kpi-lbl { font-size:.65rem; color:var(--text-muted); }
.screen-caption { padding:1rem 1.5rem 1.2rem; }
.screen-caption h4 { font-size:.87rem; font-weight:700; margin-bottom:.3rem; }
.screen-caption p { font-size:.77rem; color:var(--text-muted); }

/* CONTATO */
.contact-section {
  background: linear-gradient(135deg, #070e24 0%, var(--navy-mid) 50%, #070e24 100%);
  padding:7rem 5%; position:relative; overflow:hidden;
}
.contact-glow {
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:600px; height:600px;
  background: radial-gradient(circle, rgba(61,53,128,.4) 0%, transparent 65%);
  pointer-events:none;
}
.contact-inner {
  max-width:1000px; margin:0 auto;
  display:grid; grid-template-columns:1fr 1fr; gap:5rem; align-items:start;
  position:relative; z-index:1;
}
.contact-left h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight:800; margin-bottom:1rem; }
.contact-left p { color:var(--text-muted); line-height:1.78; margin-bottom:2rem; }
.contact-options { display:flex; flex-direction:column; gap:1rem; }
.contact-option {
  display:flex; align-items:center; gap:1rem;
  background:rgba(26,37,88,.5); border:1px solid rgba(77,184,232,.15);
  border-radius:14px; padding:1rem 1.3rem;
  text-decoration:none; color:var(--white);
  transition: border-color .2s, transform .2s;
}
.contact-option:hover { border-color:var(--cyan); transform:translateX(4px); }
.contact-option-icon {
  width:44px; height:44px; border-radius:12px; flex-shrink:0;
  display:flex; align-items:center; justify-content:center; font-size:1.3rem;
}
.wha-icon { background:rgba(37,211,102,.15); border:1px solid rgba(37,211,102,.25); }
.mail-icon { background:rgba(77,184,232,.15); border:1px solid rgba(77,184,232,.25); }
.contact-option-text strong { display:block; font-family:'Syne',sans-serif; font-size:.85rem; margin-bottom:.15rem; }
.contact-option-text span { font-size:.8rem; color:var(--text-muted); }
.contact-form {
  background:rgba(26,37,88,.4); border:1px solid rgba(77,184,232,.15);
  border-radius:20px; padding:2.5rem;
}
.contact-form h3 { font-size:1.2rem; font-weight:700; margin-bottom:1.5rem; }
.form-group { margin-bottom:1.2rem; }
.form-group label { display:block; font-size:.82rem; color:var(--text-muted); margin-bottom:.4rem; font-family:'Syne',sans-serif; }
.form-group input,
.form-group textarea,
.form-group select {
  width:100%; background:rgba(13,27,62,.7);
  border:1px solid rgba(77,184,232,.2); border-radius:10px;
  padding:.8rem 1rem; color:var(--white); font-size:.9rem;
  font-family:'DM Sans', sans-serif; outline:none; transition:border-color .2s;
  -webkit-appearance:none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color:rgba(143,164,200,.5); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color:var(--cyan); }
.form-group textarea { resize:vertical; min-height:90px; }
.form-group select option { background:var(--navy-mid); }
.form-submit {
  width:100%; padding:.9rem;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  color:var(--white); border:none; border-radius:10px;
  font-family:'Syne',sans-serif; font-weight:700; font-size:.95rem;
  cursor:pointer; transition:opacity .2s, transform .2s; margin-top:.5rem;
}
.form-submit:hover { opacity:.88; transform:translateY(-1px); }
.form-success {
  display:none; text-align:center; padding:1.5rem;
  color:var(--green); font-family:'Syne',sans-serif; font-size:.95rem;
}
.form-status { display:none; margin-top:1rem; color:#fca5a5; font-size:.85rem; line-height:1.45; }
.anti-bot-field { position:absolute !important; left:-10000px !important; width:1px !important; height:1px !important; overflow:hidden !important; }

/* WA FLOAT */
.wa-float {
  position:fixed; bottom:28px; right:28px; z-index:200;
  width:58px; height:58px; background:#25D366; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 4px 20px rgba(37,211,102,.5);
  cursor:pointer; text-decoration:none;
  transition: transform .2s, box-shadow .2s;
  animation: waPulse 3s ease infinite;
}
.wa-float:hover { transform:scale(1.1); box-shadow:0 6px 30px rgba(37,211,102,.7); }
@keyframes waPulse {
  0%,100% { box-shadow:0 4px 20px rgba(37,211,102,.5); }
  50%      { box-shadow:0 4px 30px rgba(37,211,102,.9); }
}
.wa-float svg { width:30px; height:30px; fill:white; }

/* FOOTER */
footer {
  background:#050c1e; border-top:1px solid rgba(77,184,232,.1);
  padding:3rem 5%;
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:1.5rem;
}
.footer-brand { display:flex; align-items:center; gap:.8rem; }
.footer-brand img { display:none; }
.footer-brand span { font-family:'Syne',sans-serif; font-weight:700; font-size:.95rem; }
.footer-copy { font-size:.92rem; color:var(--white); font-weight:700; }
.footer-links { display:flex; gap:1.5rem; }
.footer-links a { font-size:.92rem; color:var(--white); font-weight:700; text-decoration:none; transition:color .2s; }
.footer-links a:hover { color:var(--cyan); }

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(24px); }
  to   { opacity:1; transform:translateY(0); }
}
.reveal { opacity:0; transform:translateY(30px); transition:opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }

/* RESPONSIVE */
@media (max-width:1024px) {
  .hero { grid-template-columns:1fr; text-align:center; padding-left:5%; padding-right:5%; }
  .hero-content { max-width:760px; margin:0 auto; }
  .hero-actions { justify-content:center; }
  .hero-visual { justify-self:center; width:min(78vw, 480px); }
  .ai-inner, .tech-prop-inner, .contact-inner { grid-template-columns:1fr; gap:3rem; }
  .impact-grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:768px) {
  .nav-toggle { display:inline-flex; }
  .nav-links {
    position:absolute; top:calc(100% + 10px); left:5%; right:5%;
    display:flex; flex-direction:column; gap:.15rem;
    padding:.75rem; border:1px solid rgba(77,184,232,.22);
    border-radius:18px; background:rgba(7,14,36,.96);
    box-shadow:0 18px 42px rgba(0,0,0,.35);
    opacity:0; visibility:hidden; transform:translateY(-8px);
    pointer-events:none; transition:opacity .2s, transform .2s, visibility .2s;
  }
  .nav-links.is-open {
    opacity:1; visibility:visible; transform:translateY(0); pointer-events:auto;
  }
  .nav-links a {
    display:block; padding:.75rem .9rem; border-radius:12px;
    font-size:1rem; background:rgba(255,255,255,.03);
  }
  .tech-prop-visual { grid-template-columns:1fr 1fr; }
  .impact-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width:560px) {
  html, body { width:100%; max-width:100%; overflow-x:hidden; }
  nav { padding:.55rem 5%; gap:.45rem; }
  .nav-logo { flex:1; gap:.45rem; min-width:0; }
  .nav-logo img { width:60px; height:60px; }
  .nav-logo span { font-size:.95rem; white-space:nowrap; }
  .nav-cta { display:none; }
  .nav-toggle { width:38px; height:38px; border-radius:12px; flex:0 0 38px; }
  .hero { width:100%; min-width:0; padding:8.5rem 1rem 3rem; gap:2rem; }
  .hero-content, .hero-label, .hero h1, .hero-sub, .hero-actions, .hero-visual { min-width:0; max-width:100%; }
  .hero-label { padding:.35rem .75rem; font-size:.62rem; letter-spacing:.12em; overflow-wrap:anywhere; }
  .hero h1 { font-size:clamp(1.5rem, 7.9vw, 2.1rem); line-height:1.08; overflow-wrap:anywhere; }
  .hero-sub { width:100%; font-size:1rem; overflow-wrap:anywhere; }
  .hero-actions { width:100%; }
  .hero-actions button { max-width:100%; }
  .hero-visual { width:min(84vw, 360px); }
  .hero-visual img { object-fit:contain; }
  .hero-visual-caption { right:50%; transform:translateX(50%); bottom:4%; width:min(230px, calc(100% - 1rem)); font-size:.72rem; }
  .flow-steps { flex-direction:column; align-items:center; }
  .flow-step { width:100%; max-width:280px; }
  .flow-step:not(:last-child)::after { content:'↓'; right:50%; top:auto; bottom:-16px; transform:translateX(50%); }
  .impact-grid { grid-template-columns:1fr; }
  .stats-strip { gap:2rem; }
  footer { flex-direction:column; text-align:center; }
  .wa-float { bottom:20px; right:20px; }
}

/* === FIX: hero sempre visível === */
.hero-label, .hero-content, .hero h1, .hero-sub, .hero-actions {
  opacity: 1 !important;
  transform: none !important;
}


/* ==== INCLUSÕES: páginas novas ==== */

/* Container principal das páginas novas */
.page-main { display:block; }

/* Barra de retorno + breadcrumb */
.page-topbar {
  max-width:1300px; margin:0 auto;
  padding: 8rem 7% 0;
  display:flex; flex-direction:column; gap:.6rem;
}
.voltar-link {
  display:inline-block; align-self:flex-start;
  color:var(--cyan); text-decoration:none;
  font-family:'Syne',sans-serif; font-weight:600; font-size:.92rem;
  transition:opacity .2s, transform .2s;
}
.voltar-link:hover { opacity:.85; transform:translateX(-3px); }
.breadcrumb {
  display:flex; flex-wrap:wrap; align-items:center; gap:.45rem;
  font-size:.78rem; color:var(--text-muted);
}
.breadcrumb a { color:var(--text-muted); text-decoration:none; transition:color .2s; }
.breadcrumb a:hover { color:var(--cyan); }
.breadcrumb-sep { color:rgba(77,184,232,.5); }
.breadcrumb-atual { color:var(--white); }

/* Composição SVG do hero-visual nas páginas novas */
.hero-visual:has(.nova-visual)::before { inset:2%; }
.hero-visual:has(.nova-visual)::after { inset:-6%; }
.nova-visual {
  width:100%; aspect-ratio:1/1;
  background:var(--navy-mid);
  border:1px solid rgba(77,184,232,.2);
  border-radius:24px; overflow:hidden;
  box-shadow:0 24px 48px rgba(0,0,0,.35);
}
.nova-visual svg { display:block; width:100%; height:100%; }

/* Blocos editoriais das páginas novas */
.nova-block { padding:4rem 5%; }
.nova-block-inner { max-width:820px; margin:0 auto; }
.nova-block .label { display:inline-block; margin-bottom:1rem; }
.nova-block h2 {
  font-size: clamp(1.6rem, 3vw, 2.6rem); font-weight:800;
  margin-bottom:1.4rem;
}
.nova-block p {
  color:var(--text-muted); line-height:1.8; font-size:.98rem;
  margin-bottom:1.1rem;
}
.nova-block p strong { color:var(--white); }
.nova-block .nova-lead-p { font-size:1.08rem; color:#c6d4ee; }
.nova-block .ai-highlight { margin-top:1.8rem; }
.nova-block .ai-highlight p { margin-bottom:0; }

/* FAQ em acordeão nativo */
.nova-faq details {
  background:rgba(26,37,88,.5);
  border:1px solid rgba(77,184,232,.15);
  border-radius:16px; padding:1.2rem 1.5rem;
  margin-bottom:.9rem;
  transition:border-color .2s;
}
.nova-faq details:hover { border-color:rgba(77,184,232,.35); }
.nova-faq summary {
  list-style:none; cursor:pointer;
  font-family:'Syne',sans-serif; font-weight:700; font-size:.98rem;
  color:var(--white);
  display:flex; align-items:center; justify-content:space-between; gap:1rem;
}
.nova-faq summary::-webkit-details-marker { display:none; }
.nova-faq summary::after {
  content:'+'; flex-shrink:0;
  font-family:'Syne',sans-serif; font-size:1.3rem; font-weight:600;
  color:var(--cyan);
  transition:transform .2s;
}
.nova-faq details[open] summary::after { transform:rotate(45deg); }
.nova-faq details[open] summary { color:var(--cyan); }
.nova-faq details p {
  margin-top:1rem; font-size:.92rem;
  color:var(--text-muted); line-height:1.75;
}

/* CTA final das páginas novas */
.nova-cta {
  text-align:center; padding:7rem 5%;
  background: linear-gradient(135deg, #070e24 0%, var(--navy-mid) 50%, #070e24 100%);
  position:relative; overflow:hidden;
}
.nova-cta::before {
  content:''; position:absolute; top:50%; left:50%;
  transform:translate(-50%,-50%);
  width:600px; height:600px;
  background: radial-gradient(circle, rgba(61,53,128,.4) 0%, transparent 65%);
  pointer-events:none;
}
.nova-cta .label { display:inline-block; margin-bottom:1rem; position:relative; z-index:1; }
.nova-cta h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight:800;
  margin-bottom:1.2rem; position:relative; z-index:1;
}
.nova-cta p {
  color:var(--text-muted); font-size:1.05rem;
  max-width:620px; margin:0 auto 2.5rem; line-height:1.8;
  position:relative; z-index:1;
}
.nova-cta-actions {
  display:flex; gap:1rem; justify-content:center; flex-wrap:wrap;
  position:relative; z-index:1;
}

/* Ajustes responsivos das inclusões */
@media (max-width:1024px) {
  .page-topbar { padding-left:5%; padding-right:5%; }
}
@media (max-width:560px) {
  .page-topbar { padding:8.5rem 1rem 0; }
  .voltar-link { font-size:.85rem; }
  .breadcrumb { font-size:.72rem; }
  .nova-block { padding:3rem 1rem; }
  .nova-cta { padding:5rem 1rem; }
  .nova-cta-actions { width:100%; }
  .nova-cta-actions .btn-primary,
  .nova-cta-actions .btn-ghost { max-width:100%; }
}

/* ==== INCLUSÕES (2): hero fiel ao padrão dara.html, 14/09/2026 ==== */
/* Medidas copiadas de dara.html (.page, .intro, h1, .lead, .visual). */
.page-main .hero-grid,
.page-main .hero::after { display: none; }
.page-main .page-topbar {
  max-width: 1280px;
  margin: 0 auto;
  padding: 9.5rem 6% 0;
}
@media (max-width:560px) {
  .page-main .page-topbar { padding: 8.5rem 1rem 0; }
}
.page-main .hero {
  min-height: calc(100vh - 12rem);
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 7rem);
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 3rem 4% 5rem;
}
.page-main .hero-content { max-width: 100%; }
.page-main .hero h1 {
  font-size: clamp(2.1rem, 3.4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 1.2rem;
  hyphens: none;
}
.page-main .hero h1 span { color: var(--cyan); }
.page-main .hero-sub {
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
  color: #a6b8d6;
  max-width: 700px;
  margin-left: 0;
  margin-bottom: 2.4rem;
}
.page-main .hero-actions { flex-wrap: nowrap; }
.page-main .hero-actions a,
.page-main .nova-cta-actions a { white-space: nowrap; flex-shrink: 0; }
.page-main .hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-width: 0;
}
.page-main .nova-visual {
  width: min(100%, 540px);
  aspect-ratio: 1/1;
  height: auto;
  max-height: none;
  margin: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
  filter: drop-shadow(0 0 32px rgba(77,184,232,.3));
}
.page-main .nova-visual svg { width: 100%; height: 100%; }
.page-main .hero-visual-caption {
  position: absolute;
  right: -1rem;
  bottom: 8%;
  transform: none;
  max-width: 250px;
  width: auto;
  margin: 0;
  padding: .7rem 1rem;
  border: 1px solid var(--cyan);
  border-radius: 14px;
  background: rgba(13,27,62,.94);
  color: var(--white);
  font-size: .8rem;
  line-height: 1.4;
  text-align: left;
}
.page-main .nova-block { padding: 3rem 6%; }
@media (max-width:1024px) {
  .page-main .hero { grid-template-columns: minmax(0, 1fr) minmax(300px, 420px); gap: clamp(2rem, 5vw, 4rem); }
}
@media (max-width:900px) {
  .page-main .hero {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: auto;
    gap: 2.5rem;
    padding: 2.5rem 6% 4rem;
  }
  .page-main .hero-content { max-width: 100%; }
  .page-main .hero h1 { overflow-wrap: normal; hyphens: none; }
  .page-main .hero-sub { margin-left: auto; margin-right: auto; }
  .page-main .hero-actions { justify-content: center; }
  .page-main .hero-visual { flex-direction: column; }
  .page-main .nova-visual { width: min(78vw, 420px); }
  .page-main .hero-visual-caption { right: 4%; bottom: 5%; }
}
@media (max-width:560px) {
  .page-main .page-topbar { padding: 5.5rem 5% 0; }
  .page-main .hero { padding: 1.5rem 1rem 3rem; }
  .page-main .hero h1 { font-size: clamp(1.5rem, 7.9vw, 2.1rem); }
  .page-main .hero-sub { font-size: 1rem; margin-bottom: 1.8rem; }
  .page-main .hero-actions { flex-wrap: wrap; gap: .7rem; }
  .page-main .hero-actions .btn-primary,
  .page-main .hero-actions .btn-ghost,
  .page-main .nova-cta-actions .btn-primary,
  .page-main .nova-cta-actions .btn-ghost { padding: .65rem 1.5rem; font-size: .85rem; }
  .page-main .nova-visual { width: min(86vw, 340px); }
  .page-main .hero-visual-caption { position: relative; right: auto; bottom: auto; width: min(270px, 100%); max-width: 100%; margin: .75rem auto 0; }
}

/* Eyebrow de texto (padrão dara.html, não pill) */
.page-main .eyebrow {
  color: var(--cyan);
  font: 600 .72rem Syne, sans-serif;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}
