@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --bg: #05060a;
  --surface: #0B0F17;
  --surface2: #121826;
  --border: rgba(255,255,255,0.06);
  --accent: #00F2FE;
  --accent2: #FF007F;
  --accent-dim: rgba(0,242,254,0.10);
  --text: #F5F7FF;
  --muted: #717b96;
  --card: #101827;
  --sidebar-w: 240px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

::selection {
  background-color: var(--accent);
  color: #000;
}
::-moz-selection {
  background-color: var(--accent);
  color: #000;
}

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='1'/%3E%3C/svg%3E");
  opacity: 0.022;
  pointer-events: none;
  z-index: 9999;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 48px; height: 72px;
  background: radial-gradient(circle at 0 0, rgba(0,242,254,0.12), transparent 55%), rgba(7,11,18,0.9);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.4s ease, background 0.4s ease, border-color 0.4s ease, height 0.4s ease;
}
.nav-scrolled {
  padding: 10px 32px;
  height: 60px;
  background: rgba(5,7,11,0.96);
  border-bottom-color: rgba(255,255,255,0.04);
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 700; font-size: 19px; letter-spacing: 0.06em;
  color: var(--text); text-decoration: none;
}

.nav-logo-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 0 12px rgba(0,242,254,0.7), 0 0 26px rgba(255,0,127,0.4);
  animation: pulse 2s ease-in-out infinite;
}
.nav-logo img {
  height: 100px;
}

@keyframes pulse {
  0%,100% { box-shadow: 0 0 8px var(--accent); }
  50% { box-shadow: 0 0 18px var(--accent), 0 0 36px rgba(0,229,160,.3); }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  cursor: pointer;
  z-index: 210;
  transition: border-color .2s, background .2s;
}
.nav-toggle:hover { border-color: var(--accent); background: rgba(0,242,254,0.06); }
.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform .3s, opacity .3s;
}
nav.nav-open .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.nav-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
nav.nav-open .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: flex-end;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin-left: 40px;
  margin-right: auto;
}
.nav-links a {
  position: relative;
  color: var(--text); text-decoration: none; font-size: 20px; font-weight: 500;
  padding-bottom: 6px;
  transition: color .25s ease, transform .25s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent2) 50%, #ffffff 100%);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .3s ease;
  border-radius: 1px;
}
.nav-links a:hover,
.nav-links a.active {
  color: #ffffff;
  transform: translateY(-1px);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}
.nav-links a:active {
  transform: translateY(0);
}

.nav-actions { display: flex; align-items: center; gap: 10px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 20px; border-radius: 8px;
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 500;
  cursor: pointer; border: none; text-decoration: none; transition: all .2s;
}
.btn-ghost {
  background: rgba(255,255,255,0.02);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.18);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.06);
  color: #ffffff;
  border-color: rgba(255,255,255,0.32);
  box-shadow: 0 4px 18px rgba(0,0,0,0.45);
}
.btn-primary {
  background: linear-gradient(120deg, #33fbff 0%, #9d50bb 50%, #ff2a6d 100%);
  color: #070B12;
  font-weight: 600;
  box-shadow: 0 0 0 1px rgba(51, 251, 255, 0.35), 0 14px 40px rgba(0, 0, 0, 0.65);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow:
    0 0 0 1px rgba(51, 251, 255, 0.6),
    0 18px 48px rgba(0, 0, 0, 0.8);
  filter: brightness(1.05);
}
.btn-outline { background: transparent; color: var(--text); border: 1px solid rgba(255,255,255,.15); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-lg { padding: 13px 30px; font-size: 15px; border-radius: 10px; }
.btn-danger { background: rgba(255,80,80,.1); color: #ff5050; border: 1px solid rgba(255,80,80,.25); }
.btn-danger:hover { background: rgba(255,80,80,.2); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 110px 28px 56px;
  overflow: hidden;
}

.hero-particles{
  position:absolute;
  inset:0;
  z-index:-1;
  pointer-events:none;
}

.hero-layout{
  position:relative;
  z-index:1;
  width:100%;
  max-width:1500px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,229,160,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,160,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black, transparent);
}

.hero-glow-1 {
  position: absolute;
  top: -100px;
  left: -200px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,112,243,.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  top: -50px;
  right: -150px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,229,160,.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-map {
  flex:1;
  display:flex;
  justify-content:flex-end;
  align-items:center;
  pointer-events:none;
}

/* Mapa Brasil SVG + canvas */

.hero-map-canvas-wrap {
  position: relative;
  width: 100%;
  max-width: 1760px;
  min-width: 760px;
  aspect-ratio: 220000 / 194010;
}
@media (max-width: 900px) {
  .hero-map-canvas-wrap { min-width: 0; max-width: 100%; }
}

#brazil-svg {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 24px rgba(0,242,254,0.3));
  animation: heroMapDrift 16s ease-in-out infinite alternate;
}

#brazil-svg path {
  fill: rgba(0,180,160,0.07);
  stroke: rgba(0,210,200,0.3);
  stroke-width: 200;
  transition: fill 0.3s;
  cursor: pointer;
}

#brazil-svg path:hover {
  fill: rgba(0,200,200,0.2);
  stroke: rgba(0,230,220,0.7);
}

#map-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-map-inner {
  width:min(460px, 48vw);
  opacity:0.22;
  filter:drop-shadow(0 0 40px rgba(0,242,254,0.55));
  mix-blend-mode:screen;
  animation:heroMapDrift 16s ease-in-out infinite alternate;
}

.hero-map-img {
  width:100%;
  height:auto;
  display:block;
}

@keyframes heroMapDrift {
  0% { transform:translateY(12px) scale(1); }
  50% { transform:translateY(-6px) scale(1.02); }
  100% { transform:translateY(4px) scale(1); }
}

.hero-inner {
  flex: 1;
  min-width: 0;
  max-width: 900px;
  text-align: left;
  position: relative;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 100px;
  background: rgba(0,229,160,.08); border: 1px solid rgba(0,229,160,.2);
  font-size: 12px; font-weight: 500; color: var(--accent);
  letter-spacing: .05em; text-transform: uppercase;
  margin-bottom: 32px;
  animation: fadeDown .6s ease both;
}

@keyframes fadeDown { from { opacity:0; transform:translateY(-10px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeUp   { from { opacity:0; transform:translateY(20px); }  to { opacity:1; transform:translateY(0); } }

.hero h1 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: clamp(42px,6.2vw,78px); font-weight: 700; line-height: 1.04;
  letter-spacing: -0.04em; margin-bottom: 24px;
  animation: fadeUp .7s .1s ease both;
  text-transform: uppercase;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent2) 50%, #ffffff 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
  font-size: 22px;
  color: var(--muted);
  max-width: 100%;
  margin: 0 0 40px 0;
  line-height: 1.7;
  animation: fadeUp .7s .2s ease both;
}
.hero-cta {
  display: flex; align-items: center; gap: 12px; justify-content: flex-start; flex-wrap: wrap;
  animation: fadeUp .7s .3s ease both;
}

/* Hero scroll indicator */
.hero-scroll-indicator{
  position:absolute;
  bottom:-65px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
  pointer-events:none;
  z-index:20;
  opacity:0;
  animation:heroIndicatorIn 1.2s 2.0s forwards ease-out;
}
@keyframes heroIndicatorIn{
  from { opacity:0; transform:translateX(-50%) translateY(15px); }
  to { opacity:1; transform:translateX(-50%) translateY(0); }
}
.hero-scroll-indicator .scroll-label{
  font-family:'Space Grotesk',system-ui,sans-serif;
  font-size:10px;
  letter-spacing:0.22em;
  color:rgba(255,255,255,0.5);
  text-transform:uppercase;
}
.hero-scroll-indicator .scroll-line{
  width:1px;
  height:32px;
  background:linear-gradient(to bottom, rgba(255,255,255,0.3), rgba(255,255,255,0));
  overflow:hidden;
  position:relative;
}
.hero-scroll-indicator .scroll-dot{
  width:5px;
  height:5px;
  border-radius:50%;
  background:var(--accent);
  box-shadow:0 0 12px rgba(0,242,254,0.7);
  animation:heroDot 1.6s infinite ease-in-out;
}
@keyframes heroDot{
  0% { transform:translateY(-14px); opacity:0; }
  20% { opacity:1; }
  80% { transform:translateY(10px); opacity:1; }
  100% { transform:translateY(12px); opacity:0; }
}

/* App loader (leve) */
.app-loader{
  position:fixed;
  inset:0;
  background:radial-gradient(circle at 20% 0, rgba(0,242,254,0.08), transparent 60%), #020308;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  z-index:9999;
  transition:opacity .6s ease, visibility .6s ease;
}
.app-loader.hidden{
  opacity:0;
  visibility:hidden;
  pointer-events:none;
}
.app-loader-logo{
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:24px;
}
.app-loader-logo-img{
  height: 120px;
  width: auto;
  max-width: 480px;
  object-fit: contain;
  display: block;
}
.app-loader-bar{
  width:160px;
  height:2px;
  border-radius:999px;
  overflow:hidden;
  background:rgba(255,255,255,0.08);
  position:relative;
}
.app-loader-bar-fill{
  position:absolute;
  inset:0;
  width:45%;
  background:linear-gradient(90deg,var(--accent),var(--accent2));
  animation:loaderSweep 1.6s infinite ease-in-out;
}
@keyframes loaderSweep{
  0% { transform:translateX(-110%); }
  50% { transform:translateX(40%); }
  100% { transform:translateX(110%); }
}

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

/* ── STATS BAR ── */
.stats-bar { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 24px 48px; }
.stats-bar--recursos { border-top: none; border-radius: 12px; margin-top: 48px; }
.stats-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item { text-align: center; padding: 12px 24px; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Space Grotesk', system-ui, sans-serif; font-size: 38px; font-weight: 700; color: var(--text); line-height: 1; }
.stat-num span { color: var(--accent); }
.stat-num .green-text { display: inline; }
.stat-label { font-size: 17px; color: var(--muted); margin-top: 8px; line-height: 1.35; }

/* ── MARQUEE / TICKER ── */
.ticker {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: radial-gradient(circle at 50% 50%, rgba(0,242,254,0.06), transparent 55%), var(--surface);
  padding: 10px 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
  animation: tickerMove 40s linear infinite;
}
.ticker-item {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.ticker-item .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(0,242,254,0.7);
}
@keyframes tickerMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── SECTIONS ── */
section { padding: 100px 48px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-tag { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }

/* Pill tag (mesmo estilo da tag Contato) — Recursos, Como funciona, Comece agora */
.section-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 5px 14px;
  border-radius: 100px;
  background: rgba(0, 242, 254, 0.08);
  border: 1px solid rgba(0, 242, 254, 0.2);
  margin-bottom: 24px;
}
.section-tag-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(0, 242, 254, 0.8);
  animation: sectionTagDotPulse 1.8s ease-in-out infinite;
}
@keyframes sectionTagDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
.section-tag-pill[style*="text-align:center"] {
  justify-content: center;
}

.section-title { font-family: 'Syne', sans-serif; font-size: clamp(28px,3.5vw,44px); font-weight: 800; line-height: 1.1; letter-spacing: -.02em; margin-bottom: 16px; }
.section-sub { font-size: 22px; color: var(--muted); max-width: 540px; line-height: 1.7; }

/* ── HOW IT WORKS — BIPSYNC STYLE ── */
.how {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 96px 32px;
  position: relative;
  overflow: hidden;
}
.how::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse 70% 60% at 80% 40%, rgba(0,242,254,0.05), transparent 70%);
  pointer-events: none;
}

.how-layout {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.how-left { position: relative; }

.how-header { margin-bottom: 56px; }
.how-header .section-tag { margin-bottom: 14px; }
.how-header h2 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: clamp(60px, 3.4vw, 44px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.how-header p {
  font-size: 22px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 380px;
}

/* Step list */
.how-steps-list { display: flex; flex-direction: column; gap: 4px; }

.how-step {
  position: relative;
  padding: 24px 28px;
  border-radius: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  background: transparent;
}
.how-step::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  border: 1px solid var(--border);
  opacity: 0;
  transition: opacity 0.3s;
}
.how-step.active {
  background: rgba(0,242,254,0.04);
}
.how-step.active::before {
  opacity: 1;
  border-color: rgba(0,242,254,0.25);
}
.how-step:hover:not(.active) {
  background: rgba(255,255,255,0.02);
}
.how-step:hover:not(.active)::before {
  opacity: 1;
}

.how-step-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 0;
}
.how-step.active .how-step-header { margin-bottom: 12px; }

.how-step-num {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--muted);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 3px 9px;
  transition: all 0.3s;
  flex-shrink: 0;
}
.how-step.active .how-step-num {
  color: var(--accent);
  background: rgba(0,242,254,0.1);
  border-color: rgba(0,242,254,0.3);
}

.how-step-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}
.how-step.active .how-step-icon {
  background: rgba(0,242,254,0.08);
  border-color: rgba(0,242,254,0.25);
}
.how-step-icon svg {
  width: 16px; height: 16px;
  transition: stroke 0.3s;
}
.how-step-icon svg:not(.how-icon-svg) {
  stroke: var(--muted);
}
.how-step.active .how-step-icon svg:not(.how-icon-svg) { stroke: var(--accent); }

.how-step-title {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: -0.01em;
  transition: color 0.3s;
}
.how-step.active .how-step-title { color: var(--text); }

.how-step-body {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  padding-left: 52px;
}
.how-step.active .how-step-body {
  max-height: 120px;
  opacity: 1;
}
.how-step-body p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* Progress bar */
.how-step-progress {
  position: absolute;
  bottom: 0; left: 28px; right: 28px;
  height: 1px;
  background: rgba(0,242,254,0.12);
  border-radius: 999px;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.2s;
}
.how-step.active .how-step-progress { opacity: 1; }
.how-step-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 999px;
  transition: width linear;
}

/* ── RIGHT SIDE: Preview panels ── */
.how-right {
  position: sticky;
  top: 100px;
  height: 520px;
}

.how-preview {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
}
.how-preview.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Shared panel chrome */
.preview-chrome {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(0,242,254,0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.preview-titlebar {
  padding: 12px 16px;
  background: var(--surface2);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.preview-dot { width: 10px; height: 10px; border-radius: 50%; }
.preview-dot-r { background: #ff5f57; }
.preview-dot-y { background: #ffbd2e; }
.preview-dot-g { background: #28c840; }
.preview-titlebar-label {
  font-family: 'Space Grotesk', monospace;
  font-size: 12px;
  color: var(--muted);
  margin-left: 6px;
  letter-spacing: 0.04em;
}
.preview-body { flex: 1; padding: 24px; overflow: hidden; }

/* ── PREVIEW 1: Cadastro ── */
.reg-form { display: flex; flex-direction: column; gap: 14px; }
.reg-field {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 13px;
  color: var(--muted);
  display: flex; align-items: center; gap: 10px;
  transition: border-color 0.3s;
}
.reg-field.filled {
  border-color: rgba(0,242,254,0.3);
  color: var(--text);
}
.reg-field svg { width: 14px; height: 14px; stroke: var(--muted); flex-shrink: 0; }
.reg-field.filled svg { stroke: var(--accent); }
.reg-submit {
  background: var(--accent);
  color: #070B12;
  border-radius: 8px;
  padding: 12px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  font-family: 'Space Grotesk', sans-serif;
  margin-top: 4px;
  position: relative;
  overflow: hidden;
}
.reg-submit::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.2) 50%, transparent 100%);
  transform: translateX(-100%);
  animation: shimmer 2.4s 1.2s infinite;
}
@keyframes shimmer { to { transform: translateX(100%); } }
.reg-credits {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  background: rgba(0,242,254,0.06);
  border: 1px solid rgba(0,242,254,0.15);
  border-radius: 8px;
  font-size: 12px; color: var(--accent);
}
.reg-credits svg { width: 14px; height: 14px; stroke: var(--accent); }

/* ── PREVIEW 2: Busca ── */
.search-preview-bar {
  background: var(--surface2);
  border: 1px solid rgba(0,242,254,0.3);
  border-radius: 10px;
  padding: 11px 16px;
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
  box-shadow: 0 0 0 3px rgba(0,242,254,0.06);
}
.search-preview-bar svg { width: 14px; height: 14px; stroke: var(--accent); flex-shrink: 0; }
.search-preview-query { font-size: 13px; color: var(--text); }
.search-cursor {
  display: inline-block;
  width: 2px; height: 14px;
  background: var(--accent);
  margin-left: 2px;
  vertical-align: middle;
  animation: blink 0.9s step-end infinite;
}
@keyframes blink { 50% { opacity: 0; } }
.filter-pills {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px;
}
.pill {
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 11px; font-weight: 600;
  border: 1px solid var(--border);
  color: var(--muted);
  display: flex; align-items: center; gap: 6px;
}
.pill.active-pill {
  background: rgba(0,242,254,0.08);
  border-color: rgba(0,242,254,0.3);
  color: var(--accent);
}
.pill-dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
.search-results-list { display: flex; flex-direction: column; gap: 6px; }
.res-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 9px 12px;
  border-radius: 8px;
  background: var(--surface2);
  font-size: 12px;
  animation: rowIn 0.3s ease both;
}
.res-row:nth-child(2) { animation-delay: 0.1s; }
.res-row:nth-child(3) { animation-delay: 0.2s; }
.res-row:nth-child(4) { animation-delay: 0.3s; }
@keyframes rowIn { from { opacity:0; transform:translateY(4px); } to { opacity:1; transform:none; } }
.res-cnpj { font-family: monospace; color: var(--muted); font-size: 11px; }
.res-name { color: var(--text); font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.res-badge { padding: 2px 8px; border-radius: 100px; font-size: 10px; font-weight: 600; }
.res-ativa { background: rgba(0,242,254,0.1); color: var(--accent); }

/* ── PREVIEW 3: Exportar ── */
.export-company-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 16px;
}
.ec-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.ec-row:last-child { margin-bottom: 0; }
.ec-label { font-size: 11px; color: var(--muted); letter-spacing: 0.04em; text-transform: uppercase; }
.ec-val { font-size: 13px; color: var(--text); font-weight: 500; text-align: right; }
.ec-accent { color: var(--accent); }
.export-actions { display: flex; gap: 10px; }
.export-btn {
  flex: 1;
  padding: 11px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Space Grotesk', sans-serif;
  text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.export-btn-csv {
  background: var(--accent);
  color: #070B12;
}
.export-btn-hist {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--text);
}
.export-btn svg { width: 14px; height: 14px; }
.export-btn-csv svg { stroke: #070B12; }
.export-btn-hist svg { stroke: var(--muted); }
.export-count {
  margin-top: 14px;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}
.export-count strong { color: var(--accent); }

/* Responsive */
@media (max-width: 900px) {
  .how-layout { grid-template-columns: 1fr; gap: 40px; }
  .how-right { position: static; height: 420px; }
  .how-preview-wrap { height: 420px; position: relative; }
}

/* ── FEATURES ── */
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 56px; }
.feature-card { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 28px 24px; transition: border-color .2s, transform .2s; position: relative; overflow: hidden; }
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--accent), transparent); opacity: 0; transition: opacity .2s; }
.feature-card:hover { border-color: rgba(0,229,160,.25); transform: translateY(-3px); }
.feature-card:hover::before { opacity: 1; }
.feat-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--accent-dim); display: flex; align-items: center; justify-content: center; font-size: 18px; margin-bottom: 16px; }
.feat-title { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.feat-desc { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* ── PRICING ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 56px; }
.price-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 32px 28px; position: relative; transition: transform .2s; }
.price-card:hover { transform: translateY(-4px); }
.price-card.featured {
  position: relative;
  background: linear-gradient(160deg, #0E1D1A 0%, var(--card) 100%);
  border: none;
}
.price-card.featured::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 17px;
  padding: 1px;
  background: linear-gradient(120deg, var(--accent), var(--accent2));
  -webkit-mask: linear-gradient(#fff, #fff) content-box, linear-gradient(#fff, #fff);
  mask: linear-gradient(#fff, #fff) content-box, linear-gradient(#fff, #fff);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 0;
}
.price-card.featured > * { position: relative; z-index: 1; }
.price-featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #0099cc 0%, var(--accent) 50%, #00e5cc 100%);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.price-featured-badge .badge-icon { font-style: normal; }
.price-plan { font-size: 12px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.price-amount { font-family: 'Syne', sans-serif; font-size: 42px; font-weight: 800; line-height: 1; margin-bottom: 4px; }
.price-amount span { font-size: 20px; font-weight: 500; vertical-align: super; }
.price-period { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.price-divider { height: 1px; background: var(--border); margin-bottom: 24px; }
.price-features { list-style: none; margin-bottom: 32px; }
.price-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--muted); padding: 7px 0; border-bottom: 1px solid var(--border); }
.price-features li:last-child { border-bottom: none; }
.price-features li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.price-btn { display: block; width: 100%; padding: 13px; border-radius: 10px; font-size: 14px; font-weight: 600; font-family: 'DM Sans', sans-serif; cursor: pointer; border: none; transition: all .2s; text-align: center; text-decoration: none; }
.price-btn-primary {
  background: var(--accent);
  color: #070B12;
}
.price-btn-primary:hover {
  background: #00ffb3;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0,229,160,.4);
}
.price-btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border); }
.price-btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* ── PRICING SECTION (layout v1) ── */
.pricing-section {
  padding: 90px 24px 110px;
  position: relative;
  overflow: hidden;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pricing-noise {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  pointer-events: none;
  z-index: 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'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.pricing-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.18;
}
.pricing-orb-1 { width: 500px; height: 500px; background: var(--accent); top: -120px; left: -120px; }
.pricing-orb-2 { width: 400px; height: 400px; background: var(--accent2); bottom: -100px; right: -80px; }
.pricing-orb-3 { width: 300px; height: 300px; background: #05ED99; top: 40%; left: 50%; transform: translateX(-50%); opacity: 0.08; }

.pricing-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.pricing-particles .particle {
  position: absolute;
  width: 2px; height: 2px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0;
  animation: particleFloat linear infinite;
}
@keyframes particleFloat {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.4; }
  90% { opacity: 0.15; }
  100% { transform: translateY(-10vh) scale(1.5); opacity: 0; }
}

.pricing-inner { position: relative; z-index: 1; max-width: 1160px; margin: 0 auto; }

.pricing-header { text-align: center; }
.pricing-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  padding: 5px 14px;
  border-radius: 100px;
  background: rgba(0, 242, 254, 0.08);
  border: 1px solid rgba(0, 242, 254, 0.2);
}
.pricing-title {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-bottom: 14px;
  text-align: center;
}
.pricing-sub { font-size: 22px; color: var(--muted); text-align: center; margin-bottom: 48px; }

/* Toggle período */
.pricing-section .toggle-wrap { display: flex; align-items: center; justify-content: center; gap: 0; margin-bottom: 52px; }
.pricing-section .toggle-track {
  display: flex;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 4px;
  gap: 2px;
  position: relative;
}
.pricing-section .toggle-pill {
  position: absolute;
  top: 4px;
  left: 4px;
  height: calc(100% - 8px);
  border-radius: 100px;
  background: linear-gradient(135deg, var(--accent), #05ED99);
  transition: left 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), width 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0;
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.35);
}
.pricing-section .toggle-btn {
  position: relative;
  z-index: 1;
  padding: 8px 22px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--muted);
  transition: color 0.25s;
  font-family: 'DM Sans', sans-serif;
  white-space: nowrap;
}
.pricing-section .toggle-btn.active { color: #070B0F; font-weight: 600; }
.pricing-section .badge-save {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, var(--accent2), #a855f7);
  color: #fff;
  padding: 2px 8px;
  border-radius: 100px;
  margin-left: 6px;
  vertical-align: middle;
  pointer-events: none !important;
  cursor: default;
  user-select: none;
}


/* Cards grid */
.pricing-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr 1fr;
  gap: 16px;
  align-items: start;
}

.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.pricing-card:hover { transform: translateY(-4px); }

.pricing-card-featured {
  background: linear-gradient(160deg, #0a1a2e 0%, #0d1a2a 60%, #091520 100%);
  border-color: rgba(0, 242, 254, 0.3);
  padding: 40px 28px;
  margin-top: -12px;
  box-shadow:
    0 0 0 1px rgba(0, 242, 254, 0.15),
    0 30px 80px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(0, 242, 254, 0.08),
    inset 0 1px 0 rgba(0, 242, 254, 0.15);
  animation: featuredPulse 3s ease-in-out infinite;
}
@keyframes featuredPulse {
  0%, 100% { box-shadow: 0 0 0 1px rgba(0, 242, 254, 0.15), 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 242, 254, 0.08), inset 0 1px 0 rgba(0, 242, 254, 0.15); }
  50% { box-shadow: 0 0 0 1px rgba(0, 242, 254, 0.3), 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 80px rgba(0, 242, 254, 0.16), inset 0 1px 0 rgba(0, 242, 254, 0.25); }
}

.pricing-card-featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), #05ED99, transparent);
  border-radius: 1px;
}

.pricing-card-featured::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 242, 254, 0.03), transparent);
  border-radius: 20px;
  animation: scanBeam 4s ease-in-out infinite 1s;
  pointer-events: none;
}
@keyframes scanBeam {
  0% { left: -100%; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { left: 200%; opacity: 0; }
}

.pricing-section .popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--accent), #05ED99);
  color: #070B0F;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 20px rgba(0, 242, 254, 0.4);
}
.pricing-section .popular-badge::before { content: '⚡'; font-size: 12px; }

.pricing-section .plan-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.pricing-card-featured .plan-label { color: var(--accent); }

.pricing-section .price-row { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.pricing-section .price-currency { font-family: 'Space Grotesk', system-ui, sans-serif; font-size: 20px; font-weight: 600; color: var(--muted); }
.pricing-section .price-amount {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: clamp(44px, 5vw, 58px);
  font-weight: 700;
  line-height: 1;
  color: var(--text);
}
.pricing-section .price-amount-featured {
  background: linear-gradient(135deg, var(--accent), #05ED99);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pricing-section .price-period { font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.pricing-section .price-saving {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: #05ED99;
  background: rgba(5, 237, 153, 0.08);
  border: 1px solid rgba(5, 237, 153, 0.2);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 24px;
  min-height: 22px;
}
.pricing-section .price-saving.hidden { opacity: 0; pointer-events: none; }

.pricing-divider { height: 1px; background: var(--border); margin-bottom: 24px; }

.pricing-features { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 11px; }
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.5;
}
.pricing-features li .pricing-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(0, 242, 254, 0.08);
  border: 1px solid rgba(0, 242, 254, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--accent);
}
.pricing-card-featured .pricing-features li .pricing-check {
  background: rgba(0, 242, 254, 0.12);
  border-color: rgba(0, 242, 254, 0.35);
}
.pricing-features li .pricing-check svg { width: 9px; height: 9px; }

.pricing-section .btn-outline-plan {
  display: block;
  width: 100%;
  padding: 13px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: var(--text);
  text-align: center;
  text-decoration: none;
  transition: all 0.2s;
}
.pricing-section .btn-outline-plan:hover { border-color: rgba(0, 242, 254, 0.4); color: var(--accent); background: rgba(0, 242, 254, 0.04); }

.pricing-section .btn-primary-plan {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  border: none;
  background: linear-gradient(135deg, var(--accent) 0%, #05ED99 100%);
  color: #070B0F;
  text-align: center;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(0, 242, 254, 0.35);
}
.pricing-section .btn-primary-plan::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: translateX(-100%);
  animation: btnShimmer 2.5s 1s infinite;
}
@keyframes btnShimmer { to { transform: translateX(100%); } }
.pricing-section .btn-primary-plan:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0, 242, 254, 0.45); }

.pricing-section .enterprise-val {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1;
}
.pricing-section .enterprise-sub { font-size: 13px; color: var(--muted); margin-bottom: 24px; }

@media (max-width: 900px) {
  .pricing-cards-grid { grid-template-columns: 1fr; }
  .pricing-card-featured { margin-top: 0; }
}

/* ── Efeito fundo degradê + partículas (Recursos, Como funciona, Comece agora) ── */
.section-with-glow {
  position: relative;
  overflow: hidden;
}
.section-with-glow .section-glow-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.18;
  z-index: 0;
}
.section-with-glow .section-glow-orb-1 {
  width: 500px;
  height: 500px;
  background: var(--accent);
  top: -120px;
  left: -120px;
}
.section-with-glow .section-glow-orb-2 {
  width: 400px;
  height: 400px;
  background: var(--accent2);
  bottom: -100px;
  right: -80px;
}
.section-with-glow .section-glow-orb-3 {
  width: 300px;
  height: 300px;
  background: #05ED99;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.08;
}
.section-with-glow .section-glow-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.section-with-glow .section-glow-particles .particle {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0;
  animation: particleFloat linear infinite;
}
.section-with-glow .compliance__container,
.section-with-glow.how .section-inner,
.section-with-glow.cta-final-section .section-inner {
  position: relative;
  z-index: 1;
}
.cta-final-section {
  position: relative;
  overflow: hidden;
}

/* ── CONTATO ── */
.contact-section { padding: 80px 48px; }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}
.contact-intro .section-sub { margin-bottom: 24px; }
.contact-email {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}
.contact-email-label { display: block; margin-bottom: 4px; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.contact-email-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}
.contact-email-link:hover { text-decoration: underline; }
.contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .04em;
}
.contact-field input,
.contact-field textarea {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  transition: border-color .2s;
}
.contact-field input::placeholder,
.contact-field textarea::placeholder { color: var(--muted); opacity: 0.8; }
.contact-field input:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.contact-field input.input-error {
  border-color: rgba(255,80,80,0.7);
  box-shadow: 0 0 0 2px rgba(255,80,80,0.35);
}
.contact-field textarea { resize: vertical; min-height: 120px; }
.contact-submit { margin-top: 8px; width: 100%; justify-content: center; padding: 14px; }
@media (max-width: 768px) {
  .contact-section { padding: 60px 20px; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 24px 20px; }
}

/* ── CONTATO SECTION V1 (index) ── */
.contact-section-v1 {
  padding: 100px 40px 120px;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.contact-section-v1::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 242, 254, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 242, 254, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
  pointer-events: none;
  z-index: 0;
}
.contact-section-v1 .contact-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
  z-index: 0;
}
.contact-section-v1 .contact-orb-1 {
  width: 420px;
  height: 420px;
  background: rgba(0, 242, 254, 0.12);
  top: -80px;
  left: -100px;
}
.contact-section-v1 .contact-orb-2 {
  width: 350px;
  height: 350px;
  background: rgba(255, 0, 127, 0.08);
  bottom: -60px;
  right: -60px;
}
.contact-section-v1 .contact-inner {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
}
.contact-section-v1 .contact-v1-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.contact-section-v1 .contact-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 5px 14px;
  border-radius: 100px;
  background: rgba(0, 242, 254, 0.08);
  border: 1px solid rgba(0, 242, 254, 0.2);
  margin-bottom: 24px;
}
.contact-section-v1 .contact-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(0, 242, 254, 0.8);
  animation: contactDotPulse 1.8s ease-in-out infinite;
}
@keyframes contactDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
.contact-section-v1 .contact-title {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: clamp(34px, 3.5vw, 52px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
}
.contact-section-v1 .contact-title em {
  font-style: normal;
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent2) 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.contact-section-v1 .contact-desc {
  font-size: 22px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 380px;
  margin-bottom: 40px;
}

.contact-section-v1 .info-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-section-v1 .info-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 14px;
  cursor: default;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
  text-decoration: none;
  color: inherit;
}
.contact-section-v1 .info-card:hover {
  border-color: rgba(0, 242, 254, 0.25);
  background: rgba(0, 242, 254, 0.03);
  transform: translateX(4px);
}
.contact-section-v1 .info-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(0, 242, 254, 0.07);
  border: 1px solid rgba(0, 242, 254, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s;
  color: var(--accent);
}
.contact-section-v1 .info-card:hover .info-icon {
  background: rgba(0, 242, 254, 0.14);
  border-color: rgba(0, 242, 254, 0.35);
}
.contact-section-v1 .info-icon svg {
  width: 17px;
  height: 17px;
}
.contact-section-v1 .info-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact-section-v1 .info-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-section-v1 .info-val {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}
.contact-section-v1 .response-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 28px;
  padding: 8px 16px;
  border-radius: 100px;
  background: rgba(5, 237, 153, 0.07);
  border: 1px solid rgba(5, 237, 153, 0.2);
  font-size: 12px;
  color: #05ED99;
  font-weight: 500;
}
.contact-section-v1 .response-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #05ED99;
  box-shadow: 0 0 8px rgba(5, 237, 153, 0.8);
  animation: contactDotPulse 1.4s ease-in-out infinite;
}

.contact-section-v1 .form-card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}
.contact-section-v1 .form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 242, 254, 0.4), rgba(5, 237, 153, 0.3), transparent);
  z-index: 0;
}
.contact-section-v1 .form-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 242, 254, 0.02), transparent);
  animation: contactFormScan 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes contactFormScan {
  0% { left: -120%; }
  100% { left: 160%; }
}
.contact-section-v1 .form-card-title {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.contact-section-v1 .form-card-subtitle {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
}

.contact-section-v1 .subject-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.contact-section-v1 .subject-pill {
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.contact-section-v1 .subject-pill:hover {
  border-color: rgba(0, 242, 254, 0.3);
  color: var(--text);
}
.contact-section-v1 .subject-pill.active {
  background: rgba(0, 242, 254, 0.1);
  border-color: rgba(0, 242, 254, 0.35);
  color: var(--accent);
}

.contact-section-v1 .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.contact-section-v1 .form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.contact-section-v1 .form-group-full {
  grid-column: 1 / -1;
}
.contact-section-v1 .form-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.contact-section-v1 .form-group:focus-within .form-label {
  color: var(--accent);
}
.contact-section-v1 .form-input {
  background: var(--surface2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text);
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
  width: 100%;
}
.contact-section-v1 .form-input::placeholder {
  color: rgba(107, 122, 153, 0.6);
}
.contact-section-v1 .form-input:focus {
  border-color: rgba(0, 242, 254, 0.4);
  background: rgba(0, 242, 254, 0.03);
  box-shadow: 0 0 0 3px rgba(0, 242, 254, 0.08);
}
.contact-section-v1 textarea.form-input {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.contact-section-v1 .turnstile-wrap {
  margin-top: 20px;
  margin-bottom: 4px;
  min-height: 65px;
}
.contact-section-v1 .form-error-inline {
  margin: 0 0 12px 0;
  padding: 10px 14px;
  font-size: 14px;
  color: #ff6b6b;
  background: rgba(255, 107, 107, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(255, 107, 107, 0.3);
}
.contact-section-v1 .submit-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}
.contact-section-v1 .btn-submit-contact {
  flex: 1;
  padding: 15px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  cursor: pointer;
  border: none;
  background: linear-gradient(120deg, #33fbff 0%, #9d50bb 50%, #ff2a6d 100%);
  color: #070B0F;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(0, 242, 254, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}
.contact-section-v1 .btn-submit-contact:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}
.contact-section-v1 .btn-submit-contact:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(0, 242, 254, 0.45);
}
.contact-section-v1 .btn-submit-contact:active {
  transform: translateY(0);
}
.contact-section-v1 .btn-submit-contact::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: translateX(-100%);
  animation: contactBtnShimmer 2.5s 1.5s infinite;
}
@keyframes contactBtnShimmer {
  to { transform: translateX(100%); }
}
.contact-section-v1 .btn-submit-contact svg {
  width: 17px;
  height: 17px;
}

.contact-section-v1 .privacy-note {
  font-size: 11.5px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1.4;
  margin-top: 14px;
}
.contact-section-v1 .privacy-note svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.contact-section-v1 .contact-success-overlay {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: var(--card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  padding: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 10;
}
.contact-section-v1 .contact-success-overlay.show {
  opacity: 1;
  pointer-events: auto;
}
.contact-section-v1 .contact-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(5, 237, 153, 0.1);
  border: 1px solid rgba(5, 237, 153, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: contactSuccessPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  color: #05ED99;
}
@keyframes contactSuccessPop {
  from { transform: scale(0); }
  to { transform: scale(1); }
}
.contact-section-v1 .contact-success-icon svg {
  width: 28px;
  height: 28px;
}
.contact-section-v1 .contact-success-title {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 20px;
  font-weight: 700;
}
.contact-section-v1 .contact-success-sub {
  font-size: 14px;
  color: var(--muted);
  max-width: 280px;
  line-height: 1.6;
  margin: 0;
}
.contact-section-v1 .btn-reset-contact {
  margin-top: 8px;
  padding: 10px 24px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s;
}
.contact-section-v1 .btn-reset-contact:hover {
  border-color: rgba(0, 242, 254, 0.3);
  color: var(--accent);
}

@media (max-width: 900px) {
  .contact-section-v1 .contact-v1-layout {
    grid-template-columns: 1fr;
  }
}

/* ── DATA SOURCE ── */
.data-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.data-visual { background: var(--card); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.data-vis-head { padding: 14px 18px; background: var(--surface2); border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.data-vis-title { font-size: 12px; font-weight: 600; color: var(--muted); letter-spacing: .05em; text-transform: uppercase; }
.data-live { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--accent); }
.data-live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); animation: pulse 1.5s ease-in-out infinite; }
.data-rows { padding: 12px; }
.data-row { display: grid; grid-template-columns: 1.2fr 2fr .8fr; gap: 8px; padding: 10px 8px; border-radius: 6px; font-size: 12px; align-items: center; }
.data-row:nth-child(odd) { background: var(--surface2); }
.data-cell { color: var(--muted); }
.data-cell-main { color: var(--text); font-weight: 500; }
.data-cell-accent { color: var(--accent); font-size: 11px; }

/* ── FOOTER ── */
footer { border-top: 1px solid var(--border); padding: 60px 48px 40px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.footer-logo-link { display: inline-block; }
.footer-logo { height: 96px; width: auto; display: block; }
.footer-brand p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 0;
  max-width: 260px;
  line-height: 1.7;
  text-align: center;
}
.footer-col-title { font-size: 12px; font-weight: 700; color: var(--text); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 14px; color: var(--muted); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--text); }
.footer-bottom { display: flex; align-items: center; justify-content: center; padding-top: 24px; border-top: 1px solid var(--border); }
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer-bottom-line {
  font-size: 12px;
  color: var(--muted);
}
.footer-bottom-links {
  font-size: 12px;
  color: var(--muted);
}
.footer-bottom-links a {
  color: var(--muted);
  text-decoration: none;
}
.footer-bottom-links a:hover {
  color: var(--text);
  text-decoration: underline;
}
.footer-bottom-links .sep {
  margin: 0 6px;
  opacity: 0.6;
}
.footer-copy { font-size: 13px; color: var(--muted); }

/* ── SIDEBAR (app layout) ── */
.app-layout { display: flex; min-height: 100vh; padding-top: 64px; }

.sidebar {
  position: fixed; top: 64px; left: 0; bottom: 0;
  width: var(--sidebar-w);
  background: var(--surface);
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column;
  z-index: 100; overflow-y: auto;
}

.sidebar-section { padding: 24px 16px 8px; }
.sidebar-label { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); padding: 0 12px; margin-bottom: 8px; }

.sidebar-link {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: 8px;
  color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 500;
  transition: all .15s; margin-bottom: 2px;
}
.sidebar-link:hover { background: rgba(255,255,255,.04); color: var(--text); }
.sidebar-link.active { background: var(--accent-dim); color: var(--accent); border: 1px solid rgba(0,229,160,.15); }
.sidebar-link .icon { font-size: 16px; width: 20px; text-align: center; }

.sidebar-credits {
  margin: auto 0 0;
  padding: 16px;
  border-top: 1px solid var(--border);
}
.credits-box {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 10px; padding: 14px;
}
.credits-label { font-size: 11px; color: var(--muted); margin-bottom: 6px; }
.credits-num { font-family: 'Space Grotesk', system-ui, sans-serif; font-size: 24px; font-weight: 700; color: var(--accent); }
.credits-sub { font-size: 11px; color: var(--muted); margin-bottom: 10px; }

.main-content { margin-left: var(--sidebar-w); flex: 1; padding: 40px 48px; }

/* ── PAGE HEADER ── */
.page-header { margin-bottom: 32px; }
.page-header h1 { font-family: 'Space Grotesk', system-ui, sans-serif; font-size: 26px; font-weight: 600; letter-spacing: -.02em; margin-bottom: 6px; }
.page-header p { font-size: 14px; color: var(--muted); }

/* ── CARDS ── */
.card { background: radial-gradient(circle at 0 0, rgba(0,242,254,0.06), transparent 55%), var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 24px; box-shadow: 0 12px 40px rgba(0,0,0,0.55); backdrop-filter: blur(18px); }
.card-title { font-family: 'Space Grotesk', system-ui, sans-serif; font-size: 15px; font-weight: 600; margin-bottom: 16px; letter-spacing: 0.02em; text-transform: uppercase; }

/* ── TABLES ── */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
th { text-align: left; font-size: 11px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; padding: 10px 14px; border-bottom: 1px solid var(--border); }
td { font-size: 13px; color: var(--text); padding: 13px 14px; border-bottom: 1px solid rgba(255,255,255,.04); }
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(255,255,255,.015); }

/* ── BADGES ── */
.badge { display: inline-flex; align-items: center; gap: 5px; padding: 3px 10px; border-radius: 100px; font-size: 11px; font-weight: 600; }
.badge-green { background: rgba(0,229,160,.1); color: var(--accent); border: 1px solid rgba(0,229,160,.25); }
.badge-red { background: rgba(255,80,80,.1); color: #ff6060; border: 1px solid rgba(255,80,80,.25); }
.badge-yellow { background: rgba(255,200,0,.1); color: #ffc800; border: 1px solid rgba(255,200,0,.25); }
.badge-blue { background: rgba(0,112,243,.1); color: #4da6ff; border: 1px solid rgba(0,112,243,.25); }

/* ── FORMS ── */
.form-group { margin-bottom: 20px; }
label { display: block; font-size: 13px; font-weight: 500; color: var(--text); margin-bottom: 7px; }
input[type=text], input[type=email], input[type=password], select {
  width: 100%; background: var(--surface2); border: 1px solid var(--border);
  border-radius: 8px; padding: 11px 14px;
  color: var(--text); font-size: 14px; font-family: 'DM Sans', sans-serif;
  outline: none; transition: border-color .2s;
}
input[type=text]:focus, input[type=email]:focus, input[type=password]:focus, select:focus {
  border-color: var(--accent);
}
input::placeholder { color: var(--muted); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-hint { font-size: 12px; color: var(--muted); margin-top: 6px; }

/* ── FOCUS STATES ── */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.6);
}
.btn:focus-visible {
  box-shadow: 0 0 0 1px rgba(0,0,0,0.6), 0 0 0 3px rgba(0,242,254,0.4);
}

/* ── AUTH PAGES ── */
.auth-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 80px 20px 40px; }
.auth-card { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 40px; width: 100%; max-width: 420px; }
.auth-title { font-family: 'Space Grotesk', system-ui, sans-serif; font-size: 24px; font-weight: 600; margin-bottom: 8px; letter-spacing: -0.01em; }
.auth-sub { font-size: 14px; color: var(--muted); margin-bottom: 32px; }
.auth-divider { display: flex; align-items: center; gap: 12px; margin: 20px 0; }
.auth-divider span { font-size: 12px; color: var(--muted); }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.auth-footer { font-size: 13px; color: var(--muted); text-align: center; margin-top: 20px; }
.auth-footer a { color: var(--accent); text-decoration: none; }
.auth-footer a:hover { text-decoration: underline; }
.error-msg { background: rgba(255,80,80,.08); border: 1px solid rgba(255,80,80,.2); color: #ff6060; font-size: 13px; padding: 10px 14px; border-radius: 8px; margin-bottom: 16px; display: none; }

/* ── STAT CARDS (dashboard) ── */
.stat-cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 32px; }
.stat-card { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 20px; }
.stat-card-label { font-size: 12px; color: var(--muted); margin-bottom: 8px; }
.stat-card-val { font-family: 'Space Grotesk', system-ui, sans-serif; font-size: 26px; font-weight: 600; }
.stat-card-sub { font-size: 12px; color: var(--muted); margin-top: 4px; }
.stat-card.accent { border-color: rgba(0,229,160,.25); background: linear-gradient(135deg,rgba(0,229,160,.05) 0%,var(--card) 100%); }
.stat-card.accent .stat-card-val { color: var(--accent); }

/* ── QUICK ACTIONS ── */
.quick-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ── SEARCH FORM ── */
.search-form { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 28px; margin-bottom: 28px; }
.search-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; margin-bottom: 20px; }

/* ── PROFILE ── */
.profile-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

/* ── LEGAL PAGES ── */
.legal-content { max-width: 720px; }
.legal-content h2 { font-family: 'Space Grotesk', system-ui, sans-serif; font-size: 20px; font-weight: 600; margin: 36px 0 12px; color: var(--text); }
.legal-content p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
.legal-content ul { margin: 0 0 16px 24px; }
.legal-content ul li { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 8px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 12px 20px; height: 64px; }
  .nav-logo img { height: 32px !important; }
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 24px 20px 32px;
    background: rgba(5, 7, 11, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s;
    z-index: 199;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
  }
  nav.nav-open .nav-menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links li { margin: 0; }
  .nav-links a { display: block; padding: 14px 0; font-size: 17px; }
  .nav-actions { flex-direction: column; gap: 10px; }
  .nav-actions .btn { width: 100%; justify-content: center; }

  section { padding: 60px 20px; }
  .section-inner { padding: 0 16px; }
  .main-content { margin-left: 0; padding: 24px 20px; }
  .sidebar { display: none; }
  .stat-cards { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; }
  .data-layout { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .search-grid { grid-template-columns: 1fr; }
  .profile-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .pricing-section { padding: 48px 16px 80px; }
  .pricing-section .toggle-wrap { margin-bottom: 32px; }
  .pricing-section .toggle-track { flex-wrap: wrap; justify-content: center; }
  .pricing-section .toggle-btn { padding: 8px 16px; font-size: 12px; }

  .contact-section-v1 { padding: 60px 20px 80px; }
  .contact-section-v1 .form-card { padding: 28px 20px; }
  .contact-section-v1 .form-grid { grid-template-columns: 1fr; }
  .contact-section-v1 .contact-desc { max-width: none; }

  footer { padding: 40px 20px 32px; }
  .footer-brand p { max-width: none; }
  .cta-final-section .section-inner { padding: 0 16px; }
}

@media (max-width: 600px) {
  .hero { padding: 100px 16px 50px; min-height: auto; }
  .hero-layout { flex-direction: column; align-items: stretch; gap: 28px; }
  .hero-inner { max-width: none; }
  .hero-map { justify-content: center; width: 100%; min-width: 0; }
  .hero-map-inner { width: 100%; max-width: 320px; margin: 0 auto; }
  .hero-map-canvas-wrap {
    min-width: 0 !important;
    max-width: 100%;
    width: 100%;
    aspect-ratio: 220000 / 194010;
  }
  .hero h1 { font-size: clamp(28px, 8vw, 40px); }
  .hero-sub { font-size: 18px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .how-steps { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); row-gap: 16px; gap: 16px; }
  .stats-bar--recursos .stat-num { font-size: clamp(28px, 6vw, 36px); }
  .main-content { padding: 22px 16px; }
  table th, table td { font-size: 12px; padding: 10px; }
  .search-form { padding: 20px; }

  .pricing-section { padding: 40px 12px 64px; }
  .pricing-cards-grid { gap: 12px; }
  .pricing-card { padding: 24px 20px; }
  .pricing-card-featured { padding: 28px 20px; }
  .pricing-section .price-amount { font-size: clamp(36px, 8vw, 44px); }

  .contact-section-v1 { padding: 48px 16px 64px; }
  .contact-section-v1 .form-card { padding: 24px 16px; }
  .contact-section-v1 .subject-pills { gap: 6px; }
  .contact-section-v1 .subject-pill { padding: 6px 12px; font-size: 11px; }

  footer { padding: 32px 16px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .footer-brand { display: flex; flex-direction: column; align-items: center; }
  .footer-logo { height: 72px; }
  .footer-links { text-align: center; }
  .section-with-glow { padding-left: 16px; padding-right: 16px; }
}

/* ── COMPLIANCE-STYLE SECTION (Recursos) ── */
section#recursos.compliance,
.compliance.recursos-section {
  position: relative;
  padding: 48px 32px 120px;
  background: #070B0F;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}

section#recursos.compliance::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse 80% 50% at 20% 50%, rgba(5,237,153,0.04), transparent 50%),
                    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(0,242,254,0.03), transparent 50%);
  pointer-events: none;
}

.compliance__container {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.compliance__layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: center;
}

.compliance__text {
  max-width: 540px;
}

.compliance__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.compliance__heading {
  margin: 0 0 20px;
}

.compliance__heading p {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--text);
  margin: 0;
}

.compliance__paragraph {
  margin: 0;
}

.compliance__paragraph p {
  font-size: 22px;
  line-height: 1.75;
  color: var(--muted);
  margin: 0;
  max-width: 520px;
}

.green-text {
  font-style: normal;
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent2) 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.compliance__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}

/* ── Carrossel de cards (Recursos) ── */
.recursos-carousel {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}

.carousel__track-wrap {
  overflow: hidden;
  border-radius: 16px;
}

.carousel__track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.carousel__slide {
  flex: 0 0 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  padding: 0 4px;
}

.recursos-card {
  min-width: 0;
  min-height: 260px;
  background: linear-gradient(165deg, rgba(18,24,34,0.98) 0%, rgba(10,14,22,0.99) 100%);
  border: 1px solid rgba(0,242,254,0.2);
  border-radius: 16px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.04);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.recursos-card:hover {
  border-color: rgba(0,242,254,0.45);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 24px rgba(0,242,254,0.12);
  transform: translateY(-2px);
}

.recursos-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(0,242,254,0.08);
  border: 1px solid rgba(0,242,254,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: visible;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.recursos-card__icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.recursos-card:hover .recursos-card__icon {
  background: rgba(0,242,254,0.12);
  border-color: rgba(0,242,254,0.35);
}

.recursos-card__title {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: rgba(255,255,255,0.95);
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.recursos-card__desc {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(12,18,28,0.9);
  color: rgba(255,255,255,0.9);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.carousel-btn svg {
  width: 20px;
  height: 20px;
}

.carousel-btn:hover {
  border-color: rgba(0,242,254,0.5);
  background: rgba(0,242,254,0.1);
  color: var(--accent);
}

.carousel-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

.carousel-btn--prev {
  left: -12px;
}

.carousel-btn--next {
  right: -12px;
}

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.carousel__dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease, transform 0.25s ease;
}

.carousel__dots button:hover {
  background: rgba(255,255,255,0.45);
}

.carousel__dots button[aria-selected="true"] {
  background: var(--accent);
  transform: scale(1.2);
}

@media (max-width: 900px) {
  section#recursos.compliance { padding: 60px 20px 80px; }
  .compliance__layout { grid-template-columns: 1fr; gap: 48px; }
  .compliance__text { max-width: none; }
  .compliance__media { min-height: auto; }
  .recursos-carousel { max-width: none; padding: 0 44px; }
  .recursos-card { min-height: 240px; }
  .carousel-btn--prev { left: 0; }
  .carousel-btn--next { right: 0; }
}

@media (max-width: 500px) {
  section#recursos.compliance { padding: 40px 16px 64px; }
  .compliance__container { padding: 0 16px; }
  .recursos-carousel { padding: 0 36px; }
  .recursos-card { padding: 22px 16px; min-height: 200px; }
  .recursos-card__title { font-size: 18px; }
  .recursos-card__desc { font-size: 14px; }
  .stats-bar--recursos .stats-inner { grid-template-columns: 1fr; gap: 12px; }
  .stats-bar--recursos .stat-item { text-align: center; }
}



