/* ═══════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════ */
:root {
  --red: #ff3333;      /* Vermelho Neon super vibrante */
  --red-d: #d61c1c;
  --red-g: rgba(255,51,51,.35);
  --bg: #030303;       /* Preto profundo para destacar os glows */
  --bg2: #080808;
  --bg3: #0e0e0e;
  --card: rgba(16, 16, 16, 0.7); /* Cards translúcidos */
  --vinho: #150202;
  --light: #fcfcfc;
  --white: #fff;
  --text: #f3f0ec;
  --muted: #808080;
  --line: rgba(255,255,255,.04);
  --fd: 'Barlow Condensed', sans-serif;
  --fb: 'Inter', sans-serif;
  --ease: cubic-bezier(.22,1,.36,1);
}

/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*, ::after, ::before { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { background: var(--bg); color: var(--text); font-family: var(--fb); overflow-x: hidden; line-height: 1.65; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 2rem; }

/* ═══════════════════════════════════════════
   UTILITIES
═══════════════════════════════════════════ */
.red-text { color: var(--red); }

/* Seções escuras: preto profundo + glow vermelho fluido INTENSO */
.dark-bg {
  background: #000;
  position: relative;
}
.dark-bg::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 0% 45%, rgba(200, 10, 10, 0.18) 0%, transparent 65%),
    radial-gradient(ellipse 50% 70% at 100% 85%, rgba(160, 5, 5, 0.14) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 50% 100%, rgba(120, 0, 0, 0.10) 0%, transparent 70%);
  z-index: 0;
}
.dark-bg > * { position: relative; z-index: 1; }
.vinho-bg { background: var(--vinho); }

/* ═══════════════════════════════════════════
   VIDEO BG
═══════════════════════════════════════════ */
.video-bg-container {
  position: fixed; inset: 0; width: 100vw; height: 100vh;
  z-index: -2; overflow: hidden; pointer-events: none; background: #0a0a0a;
}
.video-bg-container video { width: 100%; height: 100%; object-fit: cover; opacity: .22; }
.video-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(circle at center, transparent 30%, rgba(10,10,10,.8) 100%),
              linear-gradient(to bottom, rgba(10,10,10,.5) 0, rgba(10,10,10,.9) 100%);
  z-index: 1;
}
.hero-noise, .footer-noise {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.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: .03;
}
.vinheta {
  position: fixed; bottom: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0, transparent 100%);
  z-index: 90; pointer-events: none;
  mask-image: linear-gradient(to top, black 0%, black 40%, transparent 100%);
  -webkit-mask-image: linear-gradient(to top, black 0%, black 40%, transparent 100%);
}

/* ═══════════════════════════════════════════
   SKEW DIVIDERS
═══════════════════════════════════════════ */
.skew-div { height: 60px; position: relative; overflow: hidden; }
.skew-div::before, .skew-div::after { content: ''; position: absolute; left: -5%; right: -5%; height: 100%; }
.bg-dark-before::before { background: var(--bg); }
.bg-dark-after::after { background: var(--bg); }
.bg-vinho-after::after { background: var(--vinho); }
.skew-div::before { top: 0; clip-path: polygon(0 0, 100% 0, 100% 40%, 0 40%); }
.skew-div::after { bottom: 0; clip-path: polygon(0 60%, 100% 20%, 100% 100%, 0 100%); }
.bg-dark-before.bg-dark-after { background: linear-gradient(135deg, #1a0303 0, #0a0a0a 50%, #0a0a0a 100%); }
.bg-dark-before.bg-vinho-after { background: #0d0202; }

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
/* ═══════════════════════════════════════════
   NAVBAR — Glassmorphism Pill (Windows 11)
   ═══════════════════════════════════════════ */
.navbar {
  position: fixed; top: 20px; left: 50%; transform: translateX(-50%);
  z-index: 200; width: auto; min-width: 540px; max-width: 90vw;
  background: rgba(8, 8, 8, 0.55);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255,255,255,0.04);
  transition: all .4s var(--ease);
}
.navbar.scrolled {
  background: rgba(5, 5, 5, 0.82);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7), 0 0 20px rgba(255, 30, 30, 0.05);
}
.nav-inner {
  max-width: 100%; padding: 0 1.6rem;
  height: 54px; display: flex; align-items: center; justify-content: space-between;
  gap: 2rem;
}
.nav-logo { font-family: var(--fd); font-weight: 800; font-size: 1rem; color: var(--white); letter-spacing: .02em; white-space: nowrap; }
.nav-logo span { color: var(--red); }
.nav-links { display: flex; align-items: center; gap: 1.4rem; }
.nav-links a { font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.5); transition: color .2s; white-space: nowrap; }
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--red) !important; color: var(--white) !important;
  padding: .38rem 1rem; border-radius: 100px; font-weight: 600 !important; font-size: .72rem !important;
  display: inline-flex; align-items: center; gap: .35rem;
  transition: background .2s, box-shadow .2s !important; min-height: 32px; white-space: nowrap;
  box-shadow: 0 0 14px rgba(255,30,30,.35);
}
.nav-cta:hover { background: var(--red-d) !important; box-shadow: 0 0 22px rgba(255,30,30,.55) !important; }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; background: none;
  border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; }

/* Mobile menu — dropdown sob a pill */
.nav-mobile-menu {
  display: none; flex-direction: column; gap: 0;
  background: rgba(8,8,8,.96);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,.06);
  border-radius: 0 0 24px 24px;
  padding: .8rem 1.6rem 1.2rem;
}
.nav-mobile-menu a { color: var(--text); font-size: .88rem; padding: .65rem 0; border-bottom: 1px solid rgba(255,255,255,.05); display: block; }
.nav-mobile-menu a:last-child { border-bottom: none; }
.nav-cta-mobile {
  margin-top: .5rem;
  background: var(--red) !important; color: var(--white) !important;
  padding: .75rem 1.2rem; border-radius: 100px;
  text-align: center; font-weight: 700;
}
.nav-mobile-menu.open { display: flex; }

/* ═══════════════════════════════════════════
   ANIMATION CLASSES
═══════════════════════════════════════════ */
.anim-el {
  opacity: 0; transform: scale(.97) translateY(12px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  transition-delay: var(--sd, 0s);
}
.anim-el.on { opacity: 1; transform: scale(1) translateY(0); }
.anim-scale {
  opacity: 0; transform: scale(.92);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
  transition-delay: var(--sd, 0s);
}
.anim-scale.on { opacity: 1; transform: scale(1); }
.hero-anim {
  opacity: 0; transform: translateX(-25px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
  transition-delay: var(--d, 0s);
}
.hero-anim.on { opacity: 1; transform: translateX(0); }

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--red); color: var(--white);
  padding: .9rem 2rem; border-radius: 8px;
  font-size: .95rem; font-weight: 700; min-height: 52px;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.btn-primary:hover { background: var(--red-d); transform: translateY(-2px); box-shadow: 0 0 28px var(--red-g); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: .5rem;
  border: 1px solid rgba(255,255,255,.18); color: var(--text);
  padding: .9rem 1.8rem; border-radius: 8px;
  font-size: .95rem; min-height: 52px;
  transition: border-color .2s, background .2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.04); }

/* ═══════════════════════════════════════════
   SECTION HEADER
═══════════════════════════════════════════ */
.sec-title {
  font-family: var(--fd); font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white); line-height: 1.05;
  text-transform: uppercase; margin-bottom: .8rem;
}
.sec-sub { font-size: 1rem; color: var(--muted); max-width: 600px; line-height: 1.7; margin-bottom: 3rem; }

/* ═══════════════════════════════════════════
   1. HERO
═══════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-start;
  padding: 110px 2rem 5rem; overflow: hidden;
  background: #000;
}
/* esconde o hero-glow-red antigo, usamos a esfera agora */
.hero-glow-red { display: none; }

.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 4rem;
  width: 100%; position: relative; z-index: 10;
  min-height: calc(100vh - 180px);
}
.hero-text { text-align: left; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(200,32,26,.1); border: 1px solid rgba(200,32,26,.25);
  color: #ff6a62; padding: .3rem .85rem; border-radius: 100px;
  font-size: .72rem; font-weight: 500; letter-spacing: .07em; text-transform: uppercase;
  margin-bottom: 1.6rem; width: fit-content;
}
.badge-pulse {
  width: 6px; height: 6px; background: var(--red); border-radius: 50%;
  animation: blink 2s infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }

.hero-h1 {
  display: flex; flex-direction: column;
  font-family: var(--fd);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 900; line-height: 1; letter-spacing: .01em;
  color: var(--white); margin-bottom: 1.4rem; text-transform: uppercase;
}
.hero-sub {
  color: var(--text); opacity: .85;
  font-size: clamp(.9rem, 1.4vw, 1.05rem);
  max-width: 500px; line-height: 1.75; margin-bottom: 2.4rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.8rem; }
.hero-stats { display: flex; align-items: center; gap: 1.8rem; }
.stat { display: flex; flex-direction: column; }
.stat strong { font-family: var(--fd); font-size: 1.6rem; font-weight: 800; color: var(--white); line-height: 1; }
.stat span { font-size: .68rem; color: var(--muted); margin-top: .2rem; }
.stat-sep { width: 1px; height: 32px; background: var(--line); }

/* ── Hero BG ── */
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 55%, rgba(0,0,0,.92) 100%);
  z-index: 5;
}

/* Esfera 3D vermelha pulsante */
.hero-sphere {
  position: absolute;
  width: 520px; height: 520px;
  right: -80px; top: -120px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 38%,
    rgba(255, 100, 80, 0.55) 0%,
    rgba(200, 10, 10, 0.85) 35%,
    rgba(100, 0, 0, 0.6) 65%,
    transparent 100%);
  filter: blur(8px);
  animation: spherePulse 6s ease-in-out infinite;
  z-index: 1;
}
@keyframes spherePulse {
  0%, 100% { transform: scale(1);   filter: blur(8px)  brightness(1); }
  50%       { transform: scale(1.06); filter: blur(14px) brightness(1.15); }
}

/* Linhas neon SVG */
.hero-waves {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 2;
  animation: waveBreath 8s ease-in-out infinite alternate;
}
@keyframes waveBreath {
  from { opacity: .7; transform: translateY(0); }
  to   { opacity: 1;  transform: translateY(-12px); }
}

/* Partículas */
.hero-sparkles { position: absolute; inset: 0; z-index: 3; pointer-events: none; }
.sparkle {
  position: absolute; border-radius: 50%;
  background: rgba(255, 80, 60, 0.85);
  animation: sparkleFade 4s ease-in-out infinite;
}
.sp-1 { width: 5px; height: 5px; top: 32%; left: 48%; animation-delay: 0s; }
.sp-2 { width: 3px; height: 3px; top: 55%; left: 60%; animation-delay: 1.5s; }
.sp-3 { width: 4px; height: 4px; top: 20%; left: 55%; animation-delay: 2.8s; }
@keyframes sparkleFade {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  50%       { opacity: 1; transform: scale(1.4); }
}

/* Estrela 4 pontas */
.hero-star-cross {
  position: absolute; bottom: 13%; right: 21%;
  font-size: 1.1rem; color: rgba(255,255,255,.5);
  z-index: 4; animation: starRotate 8s linear infinite;
}
@keyframes starRotate { to { transform: rotate(360deg); } }

/* Scroll line */
.scroll-line-wrap { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 5; }
.scroll-line {
  width: 1px; height: 55px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scrollA 2.2s ease-in-out infinite;
}
@keyframes scrollA {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ── Hero Mockup Visual ── */
.hero-visual {
  display: flex; align-items: center; justify-content: center;
  position: relative; height: 420px;
}
.hero-mockup { position: relative; width: 100%; max-width: 440px; }

/* Browser */
.mockup-browser {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
  backdrop-filter: blur(10px);
}
.browser-bar {
  display: flex; align-items: center; gap: .5rem;
  background: rgba(0,0,0,.3); padding: .6rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.b-dot { width: 10px; height: 10px; border-radius: 50%; }
.bd-red { background: #ff5f56; }
.bd-yellow { background: #ffbd2e; }
.bd-green { background: #27c93f; }
.browser-url {
  flex: 1; background: rgba(255,255,255,.06); border-radius: 4px;
  padding: .2rem .7rem; font-size: .68rem; color: var(--muted); margin-left: .3rem;
}
.browser-content { padding: 1.2rem; display: flex; flex-direction: column; gap: .7rem; }
.bc-hero-stripe {
  height: 60px; border-radius: 6px;
  background: linear-gradient(135deg, rgba(200,32,26,.3) 0, rgba(200,32,26,.08) 100%);
  border: 1px solid rgba(200,32,26,.2);
  animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer { 0%,100% { opacity: .7; } 50% { opacity: 1; } }
.bc-line { height: 8px; border-radius: 4px; background: rgba(255,255,255,.08); }
.w80 { width: 80%; }
.w60 { width: 60%; }
.bc-btn-row { display: flex; gap: .5rem; }
.bc-btn { height: 24px; border-radius: 5px; }
.bc-primary { width: 100px; background: var(--red); opacity: .8; }
.bc-ghost { width: 80px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); }
.bc-stats-row { display: flex; gap: .5rem; }
.bc-stat { flex: 1; height: 32px; border-radius: 6px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06); }

/* Mobile mockup */
.mockup-mobile {
  position: absolute; right: -30px; bottom: -20px;
  width: 90px; background: rgba(20,20,20,.95);
  border: 1px solid rgba(255,255,255,.12); border-radius: 16px;
  padding: .8rem .6rem; display: flex; flex-direction: column; gap: .4rem;
  box-shadow: 0 20px 50px rgba(0,0,0,.7);
}
.mobile-notch { width: 30px; height: 6px; border-radius: 3px; background: rgba(255,255,255,.1); margin: 0 auto .3rem; }
.mc-stripe { height: 28px; border-radius: 4px; background: rgba(200,32,26,.25); border: 1px solid rgba(200,32,26,.3); }
.mc-line { height: 5px; border-radius: 3px; background: rgba(255,255,255,.08); }
.mw70 { width: 70%; }
.mw50 { width: 50%; }
.mc-btn-m { height: 16px; border-radius: 4px; background: var(--red); opacity: .7; width: 80%; }

/* Floating badges */
.mockup-badge {
  position: absolute; display: flex; align-items: center; gap: .4rem;
  background: rgba(10,10,10,.85); border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px; padding: .4rem .9rem;
  font-size: .72rem; font-weight: 600; color: var(--white);
  backdrop-filter: blur(8px); white-space: nowrap;
}
.mockup-badge i { color: var(--red); }
.badge-conv { top: -20px; left: -20px; animation: floatBadge 4s ease-in-out infinite; }
.badge-speed { bottom: 30px; left: -30px; animation: floatBadge 4s ease-in-out infinite 1.5s; }
@keyframes floatBadge { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* ═══════════════════════════════════════════
   2. SOCIAL PROOF
═══════════════════════════════════════════ */
.sec-proof { padding: 5rem 0; }
.proof-eyebrow {
  text-align: center; font-size: .75rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 2.5rem;
}
.proof-numbers {
  display: flex; align-items: center; justify-content: center;
  gap: 3rem; flex-wrap: wrap; margin-bottom: 3rem;
}
.proof-num { text-align: center; }
.proof-num strong {
  display: block; font-family: var(--fd); font-size: 2.2rem;
  font-weight: 900; color: var(--white); line-height: 1;
}
.proof-num span { font-size: .72rem; color: var(--muted); margin-top: .3rem; display: block; }
.proof-sep { width: 1px; height: 40px; background: var(--line); }
.proof-quotes { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; }
.pq-card {
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px; padding: 1.4rem 1.6rem;
  transition: border-color .3s;
}
.pq-card:hover { border-color: rgba(200,32,26,.25); }
.pq-stars { font-size: .85rem; margin-bottom: .6rem; }
.pq-card p { font-size: .84rem; color: var(--text); line-height: 1.65; font-style: italic; margin-bottom: .7rem; }
.pq-card cite { font-size: .72rem; color: var(--muted); font-style: normal; }

/* ═══════════════════════════════════════════
   3. SERVIÇOS
═══════════════════════════════════════════ */
.sec-servicos { padding: 6rem 0; }
.servicos-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.serv-card {
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06);
  border-radius: 20px; padding: 2.2rem 2rem;
  display: flex; flex-direction: column; gap: .8rem;
  position: relative; overflow: hidden;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.serv-card:hover { border-color: rgba(200,32,26,.35); transform: translateY(-6px); box-shadow: 0 20px 50px rgba(200,32,26,.08); }
.serv-badge-label {
  position: absolute; top: 16px; right: 16px;
  background: var(--red); color: var(--white);
  font-size: .6rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; padding: .2rem .65rem; border-radius: 100px;
}
.serv-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(200,32,26,.12); border: 1px solid rgba(200,32,26,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--red); margin-bottom: .4rem;
}
.serv-card h3 { font-family: var(--fd); font-size: 1.35rem; font-weight: 700; color: var(--white); line-height: 1.2; }
.serv-card p { font-size: .84rem; color: var(--muted); line-height: 1.65; flex: 1; }
.serv-stat {
  display: flex; align-items: center; gap: .5rem;
  font-size: .75rem; color: #ff6a62; font-weight: 600;
  background: rgba(200,32,26,.06); border: 1px solid rgba(200,32,26,.15);
  padding: .35rem .8rem; border-radius: 6px; width: fit-content;
}
.serv-cta {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .85rem; font-weight: 700; color: var(--red);
  margin-top: .4rem; transition: gap .2s;
}
.serv-cta:hover { gap: .8rem; }

/* ═══════════════════════════════════════════
   4. PROCESSO
═══════════════════════════════════════════ */
.sec-processo { padding: 6rem 0; }
.processo-timeline {
  display: flex; gap: 0; align-items: flex-start;
  position: relative; margin-top: 1rem;
}
.proc-step {
  display: flex; flex-direction: column; align-items: center;
  flex: 1; position: relative; text-align: center;
}
.proc-num {
  font-family: var(--fd); font-size: 3.5rem; font-weight: 900;
  color: rgba(200,32,26,.2); line-height: 1;
  margin-bottom: .5rem; letter-spacing: -.02em;
}
.proc-line {
  position: absolute; top: 56px; left: 50%; right: -50%;
  height: 2px; background: linear-gradient(to right, rgba(200,32,26,.4), rgba(255,255,255,.05));
}
.proc-step--last .proc-line { display: none; }
.proc-content { padding: 0 .5rem; }
.proc-icon-wrap {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(200,32,26,.1); border: 2px solid rgba(200,32,26,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--red); margin: .6rem auto .8rem;
  transition: background .3s, border-color .3s;
}
.proc-step:hover .proc-icon-wrap { background: rgba(200,32,26,.22); border-color: var(--red); }
.proc-content h3 { font-family: var(--fd); font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: .4rem; }
.proc-content p { font-size: .78rem; color: var(--muted); line-height: 1.6; margin-bottom: .6rem; }
.proc-duration {
  display: inline-block; font-size: .68rem; font-weight: 600;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08);
  color: var(--muted); padding: .18rem .6rem; border-radius: 100px;
}
.proc-duration--green { background: rgba(39,201,63,.08); border-color: rgba(39,201,63,.2); color: #27c93f; }

/* ═══════════════════════════════════════════
   5. DIFERENCIAIS
═══════════════════════════════════════════ */
.sec-dif { padding: 6rem 0; }
.dif-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.dif-item {
  display: flex; gap: 1.2rem; align-items: flex-start;
  background: rgba(255,255,255,.02); border: 1px solid rgba(255,255,255,.05);
  border-radius: 14px; padding: 1.6rem;
  transition: border-color .3s, background .3s;
}
.dif-item:hover { border-color: rgba(200,32,26,.2); background: rgba(200,32,26,.03); }
.dif-check {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: rgba(200,32,26,.1); border: 1px solid rgba(200,32,26,.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--red); font-size: .85rem;
}
.dif-text h3 { font-family: var(--fd); font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: .35rem; }
.dif-text p { font-size: .82rem; color: var(--muted); line-height: 1.6; }

/* ═══════════════════════════════════════════
   6. PORTFÓLIO (Carousel)
═══════════════════════════════════════════ */
.sec-port { padding: 6rem 0 4rem; }
.sec-port .container { margin-bottom: 2rem; }
.swiper-outer {
  position: relative; display: flex; align-items: center;
  padding: 0 3.5rem; margin-top: 1rem;
}
.port-swiper-outer { padding-bottom: 20px; }
.sw-viewport { overflow: hidden; flex: 1; }
.port-sw-viewport { overflow: hidden; padding-top: 10px; margin-top: -10px; }
.sw-track { display: flex; gap: 1.2rem; transition: transform .5s var(--ease); }
.sw-btn {
  position: absolute; z-index: 10; width: 44px; height: 44px;
  border-radius: 50%; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: .82rem; transition: background .2s, transform .2s;
}
.sw-prev { left: 0; }
.sw-next { right: 0; }
.sw-btn-dark { background: rgba(255,255,255,.08); color: var(--white); }
.sw-btn-dark:hover { background: var(--red); transform: scale(1.08); }
.sw-dots { display: flex; justify-content: center; gap: .5rem; margin-top: 1.5rem; padding: 0 2rem; }
.sw-dots button { width: 8px; height: 8px; border-radius: 50%; border: none; cursor: pointer; padding: 0; transition: background .2s, transform .2s; background: rgba(255,255,255,.2); }
.sw-dots button.active { background: var(--red); transform: scale(1.3); }

.port-card {
  min-width: 380px; width: 380px; flex-shrink: 0;
  background: var(--card); border-radius: 18px;
  border: 1px solid rgba(255,255,255,.05); overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.port-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,.6); border-color: rgba(200,32,26,.2); }
.port-img-wrap { width: 100%; aspect-ratio: 16/9; background: rgba(255,255,255,.03); overflow: hidden; border-bottom: 1px solid rgba(255,255,255,.05); }
.port-info { padding: 1.4rem; }
.port-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: .6rem; }
.port-tag { font-size: .62rem; text-transform: uppercase; letter-spacing: .05em; background: rgba(200,32,26,.15); color: #ff6a62; padding: .2rem .55rem; border-radius: 4px; font-weight: 700; }
.port-info h3 { font-family: var(--fd); font-weight: 800; font-size: 1.3rem; color: var(--white); margin-bottom: .4rem; }
.port-result { font-size: .76rem; color: var(--muted); margin-bottom: .8rem; display: flex; align-items: center; gap: .4rem; }
.port-result i { color: var(--red); }
.port-link { display: inline-flex; align-items: center; gap: .4rem; font-size: .84rem; font-weight: 700; color: var(--red); transition: gap .2s; }
.port-link:hover { gap: .7rem; }
.port-link--disabled { color: var(--muted); pointer-events: none; cursor: default; }

/* ═══════════════════════════════════════════
   7. PRICING
═══════════════════════════════════════════ */
.sec-plans { padding: 6rem 0 5rem; }
.plans-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.2rem; margin-bottom: 2rem; }
.plan-card {
  background: var(--card); border: 1px solid rgba(200,32,26,.18);
  border-radius: 18px; padding: 2rem 1.6rem;
  display: flex; flex-direction: column; position: relative;
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.plan-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 20px 48px rgba(200,32,26,.12); border-color: var(--red); }
.plan-hot { border-color: var(--red) !important; box-shadow: 0 0 0 1px var(--red), 0 20px 50px rgba(200,32,26,.14) !important; }
.plan-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--red); color: var(--white);
  font-size: .62rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; padding: .22rem .8rem; border-radius: 100px; white-space: nowrap;
}
.plan-name {
  font-family: var(--fd); font-weight: 700; font-size: 1.05rem;
  color: var(--white); text-align: center; margin-bottom: 1.4rem;
  padding-bottom: .8rem; border-bottom: 1px solid rgba(255,255,255,.06);
}
.plan-list { list-style: none; flex: 1; margin-bottom: 1.4rem; }
.plan-list li {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .78rem; color: #ccc; padding: .26rem 0;
}
.plan-list li::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--red); flex-shrink: 0; margin-top: 5px;
}
.li-extra { color: #ff8880; }
.li-extra::before { background: #ff8880 !important; }
.plan-price-wrap {
  text-align: center; margin-bottom: 1.2rem;
  padding-top: .8rem; border-top: 1px solid rgba(255,255,255,.06);
  min-height: 3rem; display: flex; align-items: center; justify-content: center;
}
.plan-price {
  font-family: var(--fd); font-weight: 900;
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  color: var(--white); line-height: 1.1;
}
.plan-price em { font-style: normal; font-size: .75em; color: var(--muted); }
.plan-btn {
  display: block; text-align: center; padding: .78rem;
  background: var(--red); color: var(--white);
  border-radius: 8px; font-size: .85rem; font-weight: 700;
  min-height: 44px; transition: background .2s, transform .15s;
}
.plan-btn:hover { background: var(--red-d); transform: translateY(-1px); }
.plans-n8n {
  text-align: center; font-size: .85rem; color: var(--muted);
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  flex-wrap: wrap; margin-bottom: 1rem;
}
.plans-n8n a { color: var(--red); font-weight: 600; display: inline-flex; align-items: center; gap: .3rem; }
.pay-note {
  text-align: center; font-size: .74rem; color: var(--muted);
  display: flex; align-items: center; justify-content: center; gap: .4rem;
}
.pay-note i { color: var(--red); }

/* ═══════════════════════════════════════════
   8. FAQ
═══════════════════════════════════════════ */
.sec-faq { padding: 6rem 0 5rem; position: relative; overflow: hidden; text-align: center; }
.faq-ghost {
  position: absolute; top: -20px; left: 0; right: 0;
  text-align: center; width: 100%;
  font-family: var(--fd); font-size: clamp(8rem, 18vw, 16rem);
  font-weight: 900; color: transparent;
  -webkit-text-stroke: 2px rgba(200,32,26,.1);
  pointer-events: none; user-select: none; white-space: nowrap; z-index: 0;
}
.sec-faq .container { position: relative; z-index: 1; }
.sec-faq .sec-sub { margin-left: auto; margin-right: auto; }
.faq-list { display: flex; flex-direction: column; gap: .7rem; max-width: 860px; margin: 0 auto; text-align: left; }
.faq-item {
  background: var(--card); border-radius: 10px;
  overflow: hidden; border: 1px solid rgba(255,255,255,.05);
  transition: border-color .3s;
}
.faq-item:hover { border-color: rgba(255,255,255,.1); }
.faq-q {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
  padding: 1.1rem 1.4rem; background: 0 0; border: none;
  color: var(--text); font-size: .88rem; font-family: var(--fb);
  cursor: pointer; text-align: left; transition: color .2s;
}
.faq-q:hover { color: var(--white); }
.faq-q[aria-expanded="true"] { color: var(--red); }
.fa-arr { font-size: .68rem; flex-shrink: 0; color: var(--muted); transition: transform .3s var(--ease), color .2s; }
.faq-q[aria-expanded="true"] .fa-arr { transform: rotate(90deg); color: var(--red); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-body-open { max-height: 300px; }
.faq-body p { padding: 0 1.4rem 1.2rem; font-size: .82rem; color: var(--muted); line-height: 1.7; }

/* ═══════════════════════════════════════════
   9. CTA FINAL
═══════════════════════════════════════════ */
.sec-cta {
  padding: 9rem 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-glow {
  position: absolute; width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(200,32,26,.12) 0, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-title {
  font-family: var(--fd); font-weight: 900;
  font-size: clamp(2rem, 5vw, 4rem); color: var(--white);
  line-height: 1.1; margin-bottom: 1rem; text-transform: uppercase;
  max-width: 700px; margin-left: auto; margin-right: auto;
}
.cta-sub { color: var(--muted); font-size: 1.05rem; max-width: 400px; margin: 0 auto 2.8rem; line-height: 1.7; }
.cta-btn-wrap { display: inline-block; margin-bottom: 1.4rem; }
.btn-cta {
  display: inline-flex; align-items: center; gap: .7rem;
  background: var(--red); color: var(--white);
  padding: 1.1rem 3rem; border-radius: 100px;
  font-size: 1.1rem; font-weight: 700; min-height: 60px;
  transition: background .2s, box-shadow .2s;
  animation: ctaPulse 2.5s ease-in-out infinite;
}
.btn-cta i { font-size: 1.3rem; }
.btn-cta:hover { background: var(--red-d); animation-play-state: paused; box-shadow: 0 0 48px var(--red-g); }
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,32,26,.4); }
  50% { box-shadow: 0 0 0 18px rgba(200,32,26,0); }
}
.cta-note { font-size: .74rem; color: var(--muted); display: flex; align-items: center; justify-content: center; gap: .4rem; }
.cta-note i { color: var(--red); }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer { position: relative; overflow: hidden; background: var(--vinho); padding: 4rem 0 0; border-top: 1px solid rgba(200,32,26,.15); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.06); }
.footer-logo { font-size: 1.1rem !important; }
.footer-brand p { font-size: .78rem; color: rgba(255,255,255,.3); margin-top: .4rem; }
.f-tagline { margin-top: .5rem !important; font-size: .85rem !important; color: rgba(255,255,255,.4) !important; }
.footer-col h4 { font-family: var(--fd); font-size: .9rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col a { display: flex; align-items: center; gap: .5rem; font-size: .8rem; color: rgba(255,255,255,.35); margin-bottom: .6rem; transition: color .2s; }
.footer-col a:hover { color: var(--white); }
.footer-socials { display: flex; gap: .75rem; margin-bottom: .6rem; }
.footer-socials a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; color: rgba(255,255,255,.45); margin-bottom: 0;
  transition: background .2s, color .2s, border-color .2s;
}
.footer-socials a:hover { background: var(--red); color: var(--white); border-color: var(--red); }
.footer-handles { font-size: .68rem !important; color: rgba(255,255,255,.22) !important; }
.footer-bottom { padding: 1.2rem 2rem; text-align: center; }
.footer-bottom p { font-size: .68rem; color: rgba(255,255,255,.2); }


/* ═══════════════════════════════════════════
   CLASSES ADICIONADAS (DEPOIMENTOS CLARO E PORTFOLIO)
   ═══════════════════════════════════════════ */
/* Efeito premium glassmorphism com glows de borda estilo neon */
.serv-card, .port-card, .plan-card, .faq-item, .dif-item {
  background: rgba(12, 12, 12, 0.7) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(255, 255, 255, 0.04) !important;
  border-radius: 18px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
  transition: all 0.4s var(--ease) !important;
}

.serv-card:hover, .port-card:hover, .plan-card:hover, .faq-item:hover, .dif-item:hover {
  border-color: rgba(255, 51, 51, 0.3) !important;
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.5), 
    0 0 25px rgba(255, 51, 51, 0.12),
    0 0 1px rgba(255, 51, 51, 0.4) inset !important;
  transform: translateY(-5px) !important;
}

/* Botões com glow */
.btn-primary, .btn-cta, .plan-btn {
  background: var(--red) !important;
  color: var(--white) !important;
  box-shadow: 0 4px 20px rgba(255, 51, 51, 0.4) !important;
  border: none !important;
  transition: all 0.3s var(--ease) !important;
}
.btn-primary:hover, .btn-cta:hover, .plan-btn:hover {
  background: #ff5555 !important;
  box-shadow: 0 8px 30px rgba(255, 51, 51, 0.6) !important;
  transform: translateY(-2px) !important;
}
.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: var(--text) !important;
  transition: all 0.3s var(--ease) !important;
}
.btn-ghost:hover {
  border-color: rgba(255, 51, 51, 0.4) !important;
  background: rgba(255, 51, 51, 0.05) !important;
  box-shadow: 0 0 15px rgba(255, 51, 51, 0.15) !important;
}

.light-bg { background: var(--light); color: #111; }
.sec-dep { padding: 6rem 0 4rem; }
.dark-title { color: #111; }

/* Divisores claros skew */
.bg-light-before::before { background: var(--light); }
.bg-light-after::after   { background: var(--light); }
.bg-dark-before.bg-light-after { background: #888; }
.bg-light-before.bg-dark-after { background: #888; }

/* Cards depoimento */
.dep-card {
  width: calc(33.333% - .8rem);
  min-width: calc(33.333% - .8rem);
  max-width: calc(33.333% - .8rem);
  flex-shrink: 0;
  background: var(--white); border-radius: 16px; padding: 1.8rem;
  border: 1px solid #ddd; box-shadow: 0 4px 20px rgba(0,0,0,.07);
  word-break: break-word;
  overflow-wrap: break-word;
}
.dep-head { display: flex; align-items: center; gap: .8rem; margin-bottom: 1rem; }
.dep-av {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(200,32,26,.1); border: 2px solid rgba(200,32,26,.25);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fd); font-weight: 800; color: var(--red); font-size: .85rem;
  overflow: hidden; flex-shrink: 0;
}
.dep-av img { width: 100%; height: 100%; object-fit: cover; }
.dep-head strong { display: block; font-size: .88rem; color: #111; font-family: var(--fd); font-weight: 700; }
.dep-head span   { font-size: .7rem; color: #888; }
.dep-card p { font-size: .82rem; color: #444; line-height: 1.65; }

/* Dots depoimentos */
.sw-dots-dark button { background: rgba(0,0,0,.15) !important; }
.sw-dots-dark button.active { background: var(--red) !important; }

/* Grid de automações N8N (segunda linha) */
.plans-grid-n8n {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 280px));
  justify-content: center;
  gap: 1.2rem;
  margin-top: 2rem !important;
}

/* Placeholder do Portfolio em Desenvolvimento */
.port-img-placeholder {
  height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: .5rem;
  background: rgba(255,255,255,.02); color: var(--muted);
  min-height: 200px;
}
.port-img-placeholder i { font-size: 1.5rem; color: var(--muted); }
.port-img-placeholder span { font-size: .75rem; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); }

/* ═══════════════════════════════════════════
   RESPONSIVE — TABLET 960px
═══════════════════════════════════════════ */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; min-height: auto; }
  .hero-text { max-width: 600px; margin: 0 auto; }
  .hero-text .hero-badge { margin-left: auto; margin-right: auto; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { height: 280px; margin-top: 2rem; }
  .mockup-browser { max-width: 340px; margin: 0 auto; }
  .mockup-mobile { display: none; }
  .badge-conv { left: 0; }
  .badge-speed { left: 0; bottom: 0; }

  .servicos-grid { grid-template-columns: 1fr; gap: 1rem; }
  .plans-grid { grid-template-columns: repeat(2,1fr); }
  .dif-grid { grid-template-columns: repeat(2,1fr); }
  .proof-quotes { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .dep-card {
    width: calc(50% - .6rem);
    min-width: calc(50% - .6rem);
    max-width: calc(50% - .6rem);
  }

  .processo-timeline { flex-direction: column; gap: 0; align-items: stretch; }
  .proc-step { flex-direction: row; align-items: flex-start; text-align: left; gap: 1.2rem; padding: 1.5rem 0; border-bottom: 1px solid rgba(255,255,255,.05); }
  .proc-step--last { border-bottom: none; }
  .proc-line { display: none; }
  .proc-num { font-size: 2.5rem; min-width: 60px; }
  .proc-content { padding: 0; }
  .proc-icon-wrap { margin: 0 0 .6rem 0; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — MOBILE 700px
   ═══════════════════════════════════════════ */
@media (max-width: 700px) {
  /* Navbar: pill vira banner full-width no mobile */
  .navbar {
    top: 0;
    left: 0; right: 0;
    transform: none;
    width: 100%; max-width: 100%; min-width: 0;
    border-radius: 0;
    border-left: none; border-right: none; border-top: none;
  }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — SMALL 560px
═══════════════════════════════════════════ */
@media (max-width: 560px) {
  .container { padding: 0 1.2rem; }
  .hero {
    padding: 85px 1.2rem 4rem;
    /* Fundo mais escuro no mobile */
    background: #000 !important;
  }
  /* Overlay adicional para escurecer hero no mobile */
  .hero-bg-overlay {
    background: linear-gradient(to bottom,
      rgba(0,0,0,0.45) 0%,
      rgba(0,0,0,0.75) 50%,
      rgba(0,0,0,0.97) 100%
    ) !important;
  }
  .hero-visual { height: 200px; }

  .sec-dep, .sec-servicos, .sec-processo, .sec-dif, .sec-port, .sec-plans, .sec-faq, .sec-cta { padding: 4rem 0; }

  .dep-card {
    width: calc(100vw - 5.6rem);
    min-width: calc(100vw - 5.6rem);
    max-width: calc(100vw - 5.6rem);
  }

  .plans-grid { grid-template-columns: 1fr; }
  .plans-grid-n8n { grid-template-columns: 1fr; }
  .dif-grid { grid-template-columns: 1fr; }

  .swiper-outer { padding: 0 2.8rem; }
  .sw-btn { width: 36px; height: 36px; font-size: .7rem; }
  .port-card { min-width: calc(100vw - 5.6rem); width: calc(100vw - 5.6rem); }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .stat-sep { display: none; }
  .hero-stats { gap: 1rem; flex-wrap: wrap; justify-content: center; }

  .skew-div { height: 40px; }

  .btn-primary, .btn-ghost { padding: .8rem 1.4rem; font-size: .88rem; min-height: 48px; }
  .btn-cta { padding: .9rem 2rem; font-size: .95rem; }
}