/* ═══════════════════════════════
   NETPUBLI - HIGH PERFORMANCE DESIGN SYSTEM
   THEME: BLACK & RED ELITE
═══════════════════════════════ */

:root {
  --bg: #000000;
  --bg-1: #000000; /* Fundo absoluto */
  --bg-2: #0a0a0a;
  --card: #000000; /* Fundo preto padrão */
  --text: #ffffff;
  --text-2: #a0a0a0;
  --muted: #626262;
  --pink: #FF0033; /* Vibrant performance red */
  --pink-2: #D10029;
  --pink-soft: rgba(255, 0, 51, 0.08);
  --pink-glow: rgba(255, 0, 51, 0.25);
  --blue-soft: rgba(77, 163, 255, 0.05);
  --line: rgba(255, 255, 255, 0.06);
  --line-2: rgba(255, 255, 255, 0.12);
  --r: 12px;
  --r-md: 20px;
  --r-lg: 32px;
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
}

* { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior:initial; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-weight: 400;
  letter-spacing: -0.025em;
}

/* ═══════════════════════════════
   UTILITIES
═══════════════════════════════ */
.container {
  width: min(1280px, 100% - 48px);
  margin-inline: auto;
}

.section {
  padding: 80px 0;
  position: relative;
}

.section-alt {
  background: transparent;
}

a { text-decoration: none; color: inherit; transition: 0.3s var(--ease); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.noise {
  position: fixed; top:0; left:0; width:100%; height:100%;
  background: url('https://grainy-gradients.vercel.app/noise.svg');
  opacity: .04; pointer-events:none; z-index:9999;
}

/* ═══════════════════════════════
   HEADER
═══════════════════════════════ */
.site-header {
  position: absolute; top: 0; left: 0; width: 100%; z-index: 100;
  padding: 30px 0; border-bottom: 1px solid transparent;
  transition: .4s var(--ease);
}
.site-header.scrolled {
  padding: 18px 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}
.header-wrap { display: flex; align-items: center; justify-content: space-between; }
.logo-img { height: 40px; width: auto; object-fit: contain; }
.main-nav { display: flex; gap: 40px; }
.main-nav a { font-size: 0.9rem; font-weight: 500; color: var(--text-2); }
.main-nav a:hover { color: var(--pink); }

.header-cta {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 999px;
  background: var(--pink); color: #fff;
  font-size: 0.9rem; font-weight: 600;
}

/* ═══════════════════════════════
   BUTTONS
═══════════════════════════════ */
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  height: 60px; padding: 0 36px; border-radius: 999px;
  background: var(--pink); color: #fff;
  font-weight: 500; font-size: 1rem; position: relative;
  overflow: hidden;
}
.button::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent);
  transform: translateX(-100%); transition: 0.5s;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px var(--pink-glow);
}
.button:hover::after {
  opacity: 1;
}

.button-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 32px; height: 56px; border-radius: 999px;
  border: 1px solid var(--line-2);
  background: rgba(255, 255, 255, 0.025);
  color: var(--text-2); font-weight: 500; font-size: 0.98rem;
  transition: 0.3s var(--ease);
}
.button-ghost:hover {
  border-color: var(--pink);
  background: var(--pink-soft);
  color: var(--text);
  transform: translateY(-2px);
}

/* ═══════════════════════════════
   EYEBROW
═══════════════════════════════ */
.eyebrow {
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 14px; border-radius:999px;
  background:var(--pink-soft);
  border:1px solid rgba(255,30,109,.18);
  color:rgba(255,195,215,.9);
  font-size:.8rem; font-weight:500; letter-spacing:.03em;
  margin-bottom: 28px;
}
.eyebrow-dot {
  width:7px; height:7px; border-radius:50%;
  background:var(--pink); box-shadow:0 0 8px var(--pink);
  flex-shrink:0; animation:pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; box-shadow:0 0 8px var(--pink); }
  50%      { opacity:.5; box-shadow:0 0 3px var(--pink); }
}
.center-ey { justify-content:center; }

/* ═══════════════════════════════
   SECTION HEADERS
═══════════════════════════════ */
.sec-header { margin-bottom:60px; }
.sec-header.center { text-align:center; }
.sec-header h2,
.cta-inner h2 {
  font-size: clamp(2rem, 3.8vw, 3.8rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: 400; /* Sem bold */
}
.sec-header.center h2 { max-width:26ch; margin:0 auto; }
.sec-header h2 em,
.cta-inner h2 em {
  font-style:normal; display:block;
  background: linear-gradient(135deg, var(--pink), var(--pink-2), #ff5c7a);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  background-clip:text;
}

/* ═══════════════════════════════
   SPLIT LAYOUT (imagem + conteúdo)
═══════════════════════════════ */
.sec-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
/* .reverse: só muda a order via CSS, sem direction hack */
.sec-split.reverse .sec-split-img  { order: -1; } /* imagem vai pra esquerda */
.sec-split.reverse .sec-split-content { order:  1; } /* conteúdo fica na direita */
.sec-split-content { display: flex; flex-direction: column; gap: 0; }
.sec-split-content .sec-header { margin-bottom: 32px; }

/* Container de imagem */
.sec-split-img {
  position: relative;
  min-height: 440px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line); /* Borda sólida sutil em vez de tracejada */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000; /* Fundo preto puro para mesclar com as artes */
  padding: 20px;
}
.sec-img-placeholder {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain; /* Garante que nada seja cortado */
  display: block;
  transition: transform 0.6s var(--ease);
}
.sec-split-img:hover .sec-img-placeholder {
  transform: scale(1.05); /* Efeito suave de zoom ao passar o mouse */
}
.sec-img-placeholder[src=""] { display: none; } /* oculta se sem src */
.sec-img-label {
  font-size: 0.82rem; color: var(--muted);
  text-align: center; padding: 20px;
  pointer-events: none;
}
/* Quando a imagem real for inserida, esconde o label */
.sec-split-img:has(img[src]:not([src=""])) .sec-img-label { display: none; }

/* ═══════════════════════════════
   ICON GRID (cards compactos)
═══════════════════════════════ */
.icon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 8px;
}
.icon-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.icon-card:hover {
  border-color: rgba(255, 0, 51, 0.25);
  transform: translateY(-3px);
}
.icon-card-icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,0,51,0.08);
  border-radius: 10px;
  color: var(--pink);
}
.icon-card strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 2px;
  letter-spacing: -0.02em;
}
.icon-card p {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.4;
}


/* ═══════════════════════════════
   HERO
═══════════════════════════════ */
.hero {
  position: relative;
  padding: 160px 0 0;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.8) 92%, var(--bg) 100%),
              url('imagens/img-hero.png') no-repeat center center;
  background-size: cover;
}
.hero-glow {
  position:absolute; border-radius:50%;
  pointer-events:none; filter:blur(110px);
}
.g1 {
  width:700px; height:700px;
  background:radial-gradient(circle,rgba(255,30,109,.10),transparent 70%);
  top:-200px; right:-100px;
}
.g2 {
  width:600px; height:600px;
  background:radial-gradient(circle,rgba(77,163,255,.05),transparent 70%);
  bottom:-100px; left:-100px;
}
.grid-lines {
  position:absolute; inset:0; opacity:.15;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px,transparent 1px),
                    linear-gradient(90deg,rgba(255,255,255,.05) 1px,transparent 1px);
  background-size:60px 60px; pointer-events:none;
}

.hero-center { text-align:center; max-width:900px; margin:0 auto 80px; position:relative; z-index:1; }
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1.1;
  letter-spacing: -0.05em; font-weight: 400; margin-bottom: 32px;
  color: #fff;
}
.hero h1 .highlight {
  display: block;
  color: var(--pink);
}
.hero-sub { font-size:1.05rem; color:var(--text-2); margin-bottom:48px; max-width:600px; margin-inline:auto; line-height:1.6; }
.hero-btns { display:flex; align-items:center; justify-content:center; gap:20px; }

/* Browser Mockup */
.browser-wrap { position:relative; z-index:2; margin-bottom:-60px; }
.browser-frame {
  max-width:1040px; margin:0 auto;
  background: #080808; border:1px solid var(--line-2);
  border-radius:12px;
  box-shadow:0 30px 100px rgba(0,0,0,.8), 0 0 0 1px rgba(255,255,255,.05);
  overflow:hidden;
}

.browser-chrome {
  background: #111; padding:12px 18px;
  display:flex; align-items:center; justify-content:space-between;
  border-bottom:1px solid var(--line);
}
.bc-dots { display:flex; gap:6px; }
.bc-dots span { width:9px; height:9px; border-radius:50%; }
.d-r { background:#ff5f57; } .d-y { background:#febc2e; } .d-g { background:#28c840; }
.bc-url {
  background:#1a1a1a; padding:6px 20px; border-radius:6px;
  font-size:0.75rem; color:var(--muted); letter-spacing:.02em;
  display:flex; align-items:center; gap:8px;
}
.bc-badge { font-size:0.7rem; font-weight:700; color:var(--pink); display:flex; align-items:center; gap:5px; }
.badge-dot { width:5px; height:5px; background:var(--pink); border-radius:50%; box-shadow:0 0 6px var(--pink); }

/* Browser screen (inner skeleton) */
.browser-screen {
  overflow: hidden;
  background: #050505;
  display: block;
  border-radius: 0 0 12px 12px;
}
.bf-mockup-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s var(--ease);
}
.browser-frame:hover .bf-mockup-img {
  transform: scale(1.015);
}


/* ═══════════════════════════════
   MARQUEE
 ═══════════════════════════════ */
.marquee-strip {
  padding:14px 0; overflow:hidden; position:relative;
  background: transparent;
}
.marquee-strip::before,
.marquee-strip::after {
  content:''; position:absolute; top:0; height:100%; width:150px; z-index:2;
}
.marquee-strip::before { left:0; background:linear-gradient(90deg,var(--bg),transparent); }
.marquee-strip::after { right:0; background:linear-gradient(-90deg,var(--bg),transparent); }

.marquee-track { display:flex; width:max-content; animation:marquee 30s linear infinite; }
.marquee-inner { display:flex; align-items:center; gap:30px; padding-right:30px; }
.marquee-inner span {
  font-size:1.1rem; font-weight:800; text-transform:uppercase;
  letter-spacing:.15em; color:rgba(255,255,255,.1); white-space:nowrap;
}
.marquee-inner em { color:var(--pink); font-style:normal; font-size:1.5rem; opacity:.4; }

@keyframes marquee {
  0% { transform:translateX(0); }
  100% { transform:translateX(-50%); }
}

/* ═══════════════════════════════
   GRIDS
 ═══════════════════════════════ */
.grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.grid-2 { display:grid; grid-template-columns:repeat(2,1fr); gap:20px; }

#sec-two-bg, #sec-three-bg {
  background: transparent;
}
.pain-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:20px;
}

/* ═══════════════════════════════
   PAIN CARDS
 ═══════════════════════════════ */
.pain-card {
  position:relative; padding:38px 34px;
  border-radius:var(--r-lg); background:var(--card);
  border: 1px solid var(--line);
  overflow:hidden;
  transition:transform .3s var(--ease),box-shadow .3s var(--ease);
}
.pain-card::before {
  content:''; position:absolute; inset:0; pointer-events:none;
  background:linear-gradient(135deg,rgba(255,30,109,.22) 0%,rgba(77,163,255,.1) 50%,transparent 80%);
  opacity:0; transition:.4s;
}
.pain-card:hover { transform:translateY(-5px); box-shadow:0 24px 60px rgba(0,0,0,.4); }
.pain-card:hover::before { opacity:1; }

.pc-num {
  font-size:5.5rem; font-weight:900; line-height:1;
  letter-spacing:-.06em; color:rgba(255, 30, 109, 0.1);
  margin-bottom:12px;
}
.pain-card h3 {
  font-size: 1.1rem; font-weight: 500; line-height: 1.2;
  letter-spacing:-.025em; margin-bottom:12px;
  color: #fff;
}
.pain-card p { font-size:.9rem; color:var(--text-2); line-height:1.65; }

/* ═══════════════════════════════
   STATS SECTION
═══════════════════════════════ */
.stats-section {
  padding: 50px 0;
  background: transparent;
}
.stats-row {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 40px;
}
.stat-item {
  text-align: center;
  flex: 1;
  padding: 0 30px;
}
.stat-num {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.04em;
}
.count { color: #fff; }
.stat-sign { color: #fff; margin-left: 2px; }
.stat-label {
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--line);
}

/* ═══════════════════════════════
   SOLUTION CARDS
 ═══════════════════════════════ */
.sol-card {
  position:relative; padding:40px 38px;
  border-radius:var(--r-lg); background:var(--card);
  border: 1px solid var(--line);
  overflow:hidden;
  transition:transform .3s var(--ease),box-shadow .3s var(--ease);
}
.sol-card.pink-accent {
  border-color: rgba(255, 0, 51, 0.15);
}
.sol-card.pink-accent::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:radial-gradient(135deg,rgba(255,30,109,.15) 0%, transparent 40%);
  opacity: 0.4;
}
.sol-card.blue-accent {
  background:linear-gradient(140deg,rgba(77,163,255,.06),var(--card) 60%);
}
.sol-card.blue-accent::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:linear-gradient(135deg,rgba(77,163,255,.3) 0%,rgba(77,163,255,.08) 50%,transparent 80%);
}
.sol-card:hover { transform:translateY(-5px); box-shadow:0 24px 60px rgba(0,0,0,.4); }
.sol-icon {
  width:48px; height:48px; border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  background:var(--pink-soft); border:1px solid rgba(255,30,109,.18);
  color:var(--pink-2); margin-bottom:22px;
}
.sol-card.blue-accent .sol-icon {
  background:rgba(255,255,255,.05); border-color:rgba(255,255,255,.1); color:#fff;
}
.sol-card h3 {
  font-size: 1.15rem; font-weight: 500; line-height: 1.2;
  letter-spacing:-.025em; margin-bottom:12px;
  color: #fff;
}
.sol-card p { font-size:.9rem; color:var(--text-2); line-height:1.65; }

/* ═══════════════════════════════
   ESPECIALIDADES
 ═══════════════════════════════ */
#especialidades .sec-split {
  grid-template-columns: minmax(0, 1fr);
  justify-content: center;
  gap: 48px;
  align-items: stretch;
}
#especialidades .sec-split-content {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
}
#especialidades .sec-header {
  margin-bottom: 40px;
  text-align: center;
}
#especialidades .sec-header h2 {
  max-width: none;
  margin: 0 auto;
}
#especialidades .sec-split-img { min-height: 100%; }

.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 8px;
}
/* Fora do split (fallback) */
#especialidades > .container > .spec-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.spec-card {
  background: linear-gradient(180deg, rgba(20,20,20,0.8) 0%, rgba(10,10,10,0.9) 100%);
  border: 1px solid var(--line-2);
  padding: 32px 28px;
  border-radius: 20px;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.spec-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--pink), transparent);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.spec-card::after {
  content: '';
  position: absolute;
  top: -50%; right: -30%;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(255,0,51,0.12), transparent 65%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
}

.spec-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 0, 51, 0.35);
}
.spec-card:hover::before,
.spec-card:hover::after { opacity: 1; }

.spec-featured {
  border-color: rgba(255, 0, 51, 0.35);
  background: linear-gradient(180deg, rgba(40,8,15,0.6) 0%, rgba(10,10,10,0.9) 100%);
}
.spec-featured::before { opacity: 1; }

.spec-badge {
  position: absolute;
  top: 18px; right: 18px;
  background: var(--pink);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(255,0,51,0.35);
}

.spec-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(255,0,51,0.18), rgba(255,0,51,0.06));
  border: 1px solid rgba(255, 0, 51, 0.25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  margin-bottom: 24px;
  transition: 0.4s var(--ease);
}

.spec-card:hover .spec-icon {
  background: var(--pink);
  border-color: var(--pink);
  color: #fff;
  box-shadow: 0 10px 30px rgba(255,0,51,0.4);
}

.spec-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.spec-card p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.55;
  margin-bottom: 22px;
  flex: 1;
}

.spec-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.spec-list li {
  font-size: 0.85rem;
  color: #d4d4d4;
  display: flex;
  align-items: center;
  gap: 10px;
}

.spec-check {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 0, 51, 0.15);
  color: var(--pink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.spec-cta {
  margin-top: 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.spec-cta p {
  color: var(--text-2);
  font-size: 0.95rem;
}

/* ═══════════════════════════════
   FAQ (Elite Edition)
 ═══════════════════════════════ */
.faq-grid {
  max-width: 800px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 16px;
}
.faq-item {
  background: var(--bg-1); padding: 32px;
  border-radius: var(--r-md); border: 1px solid var(--line);
}
.faq-item h3 { font-size: 1.1rem; color: #fff; margin-bottom: 12px; }
.faq-item p { font-size: .94rem; color: var(--text-2); line-height: 1.6; }

/* ═══════════════════════════════
   TESTIMONIALS (infinite marquee)
 ═══════════════════════════════ */
.testi-masonry {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.testi-row {
  overflow: hidden;
  width: 100%;
}
.testi-track {
  display: flex;
  gap: 14px;
  width: max-content;
  will-change: transform;
}
.testi-track-left  { animation: testi-scroll-left  60s linear infinite; }
.testi-track-right { animation: testi-scroll-right 60s linear infinite; }

@keyframes testi-scroll-left {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 7px)); }
}
@keyframes testi-scroll-right {
  from { transform: translateX(calc(-50% - 7px)); }
  to   { transform: translateX(0); }
}

.testi-card-new {
  flex: 0 0 320px;
  width: 320px;
  background: #111;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color .25s var(--ease);
}
.testi-card-new:hover { border-color: rgba(255,0,51,0.4); }
.testi-stars {
  color: var(--pink);
  font-size: 1rem;
  letter-spacing: 3px;
}
.testi-card-new h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}
.testi-card-new p {
  font-size: .88rem;
  line-height: 1.65;
  color: var(--text-2);
  font-style: italic;
}

/* ═══════════════════════════════
   PROCESS (horizontal)
 ═══════════════════════════════ */
.process-row {
  display:grid;
  grid-template-columns:minmax(0, 1fr) 40px minmax(0, 1fr) 40px minmax(0, 1fr);
  gap:24px;
  align-items:start;
}
.proc-step {
  width:100%;
  max-width:220px;
  min-width:0;
}
.proc-step:first-child { justify-self:start; }
.proc-step:nth-child(3) { justify-self:center; }
.proc-step:last-child  { justify-self:end; }
.proc-num {
  display:inline-flex; align-items:center; justify-content:center;
  width:48px; height:48px; border-radius:14px;
  border:1px solid rgba(255,30,109,.25);
  background:var(--pink-soft);
  color:var(--pink); font-size:.8rem; font-weight:900;
  letter-spacing:.04em; margin-bottom:20px;
}
.proc-step h3 {
  font-size: 1.1rem; font-weight: 600; line-height: 1.2;
  letter-spacing:-.025em; margin-bottom:12px;
  max-width:12ch;
}
.proc-step p {
  margin:0;
  max-width:18ch;
  font-size:.9rem;
  color:var(--text-2);
  line-height:1.65;
}
.proc-arrow {
  display:flex;
  align-items:flex-start;
  justify-content:center;
  color:rgba(255,30,109,.4);
  padding-top:16px;
}

/* ═══════════════════════════════
   FINAL CTA
 ═══════════════════════════════ */
.cta-section {
  position: relative;
  padding: 80px 0;
  overflow: visible; /* permite o glow sangrar para cima */
}
.cta-glow {
  position: absolute;
  top: -20%;   /* sobe o glow além da borda da seção */
  left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 600px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255,30,109,.12), transparent 65%);
  filter: blur(80px); pointer-events: none;
}
.cta-section::before {
  content: ''; position: absolute;
  top: -60px; left: 0; right: 0; bottom: 0; /* estende 60px acima */
  background: radial-gradient(ellipse at center top, rgba(255,30,109,.06) 0%, transparent 60%);
  pointer-events: none;
}
.cta-inner {
  text-align:center; max-width:860px; margin:0 auto;
}
.cta-inner h2 { margin:0 auto 20px; }
.cta-inner p {
  font-size:1.06rem; color:var(--text-2);
  max-width:580px; margin:0 auto 36px; line-height:1.65;
}
.cta-btns {
  display:flex; align-items:center; justify-content:center;
  flex-wrap:wrap; gap:14px;
}

/* ═══════════════════════════════
   FOOTER
 ═══════════════════════════════ */
.site-footer { padding:0 0 40px; }
.footer-wrap {
  display:flex; align-items:center; justify-content:space-between; gap:24px;
  padding-top:28px; border-top:1px solid var(--line);
}
.footer-brand { display:flex; flex-direction:column; gap:12px; }
.footer-logo { height: 32px; width: auto; align-self: flex-start; }
.footer-brand span,.footer-copy { color:var(--muted); font-size:.84rem; }

/* ═══════════════════════════════
   FAQ (Elite Edition)
 ═══════════════════════════════ */
.faq-split {
  align-items: flex-start;
  gap: 80px;
  position: relative;
}

.faq-cta-col {
  position: sticky;
  top: 120px;
}

.faq-cta-sub {
  color: var(--text-2);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 16px 0 32px;
  max-width: 38ch;
}

.faq-cta-card {
  padding: 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  margin-bottom: 24px;
}

.faq-cta-card p {
  font-size: 0.9rem;
  color: var(--text-2);
  margin-bottom: 20px;
}

.faq-trust {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-trust span {
  font-size: 0.85rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: all .4s var(--ease);
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.faq-item[open] {
  border-color: rgba(255, 0, 51, 0.3);
  background: rgba(255, 0, 51, 0.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.faq-item summary {
  list-style: none;
  padding: 24px 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-q-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}

.faq-number {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--pink);
  opacity: 0.5;
  font-family: monospace;
}

.faq-item[open] .faq-number {
  opacity: 1;
}

.faq-question {
  font-weight: 500;
  font-size: 1.1rem;
  color: #fff;
  transition: color 0.3s;
}

.faq-item[open] .faq-question {
  color: var(--pink);
}

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  transition: 0.4s var(--ease);
}

.faq-item[open] .faq-icon {
  background: var(--pink);
  transform: rotate(180deg);
}

.faq-chevron {
  width: 18px;
  height: 18px;
  color: #fff;
}

.faq-content {
  padding: 0 32px 32px 72px; /* Alinhado com a pergunta (pulando o número) */
}

.faq-content p {
  margin: 0;
  color: var(--text-2);
  font-size: 0.98rem;
  line-height: 1.7;
}

.faq-content p strong {
  color: #fff;
  font-weight: 600;
}

/* ═══════════════════════════════
   WHATSAPP FAB
 ═══════════════════════════════ */
.whatsapp-float {
  position:fixed; right:24px; bottom:24px;
  width:56px; height:56px; border-radius:50%;
  background:#25D366;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 10px 28px rgba(37,211,102,.42); z-index:1000;
  transition:.3s var(--ease);
}
.whatsapp-float:hover { transform:scale(1.1) translateY(-2px); box-shadow:0 16px 38px rgba(37,211,102,.55); }
.whatsapp-float svg { width:27px; height:27px; }

/* ═══════════════════════════════
   SECTION BACKGROUNDS (img-sections)
 ═══════════════════════════════ */
/* Background images removidas conforme solicitado */

/* ═══════════════════════════════
   RESPONSIVE
 ═══════════════════════════════ */

/* ── 1280px: Ajustes de container ── */
@media (max-width:1280px) {
  .browser-frame { max-width: 90%; }
}

/* ── 1100px: Tablet Grande ── */
@media (max-width:1100px) {
  .browser-frame { width:96%; }
  .process-row {
    grid-template-columns:minmax(0, 1fr) 28px minmax(0, 1fr) 28px minmax(0, 1fr);
    gap:18px;
  }
  .sec-split { gap: 40px; }
  .faq-split { gap: 40px; }
  #especialidades .spec-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ── 960px: Tablet ── */
@media (max-width:960px) {
  /* Header */
  .main-nav { display:none; }
  .header-cta { display: none; }

  /* FAQ Responsive */
  .faq-cta-col { position: static; margin-bottom: 32px; }
  .faq-item summary { padding: 20px; font-size: 0.95rem; }
  .faq-item p { padding: 0 20px 20px; font-size: 0.88rem; }

  /* Hero */
  .hero { padding: 110px 0 0; }
  .hero-center { margin-bottom: 48px; }

  /* Grids */
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2,1fr); gap: 20px; }

  /* Split layout → 1 coluna */
  .sec-split { grid-template-columns: 1fr; gap: 32px; }
  .sec-split.reverse { direction: ltr; }
  .sec-split-img { min-height: 280px; }

  /* Stats */
  .stats-row { flex-wrap: wrap; border-radius: var(--r-md); padding: 24px 16px; }
  .stat-divider { display: none; }
  .stat-item { flex: 1 1 45%; border-bottom: 1px solid var(--line); padding: 20px 16px; }
  .stat-item:last-child, .stat-item:nth-last-child(2) { border-bottom: none; }

  /* Processo */
  .process-row { grid-template-columns: 1fr; gap: 32px; }
  .proc-arrow { display: none; }
  .proc-step {
    max-width: none;
    justify-self: stretch !important;
  }

  /* Footer */
  .footer-wrap { flex-direction: column; align-items: flex-start; gap: 20px; }
}

/* ── 768px: Mobile Grande ── */
@media (max-width:768px) {
  /* Seções */
  .section, .cta-section { padding: 72px 0; }
  .stats-section { padding: 40px 0; }
  .sec-header { margin-bottom: 40px; }

  /* Tipografia de seções */
  .sec-header h2, .cta-inner h2 {
    font-size: clamp(1.7rem, 6vw, 2.4rem);
    letter-spacing: -0.03em;
  }

  /* Hero */
  .hero { padding: 100px 0 0; }
  .hero-center { margin-bottom: 40px; }
  .hero h1 { font-size: clamp(1.8rem, 7vw, 2.8rem); letter-spacing:-0.04em; }
  .hero-sub { font-size: 0.95rem; }

  /* Botões Hero */
  .hero-btns { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-btns .button,
  .hero-btns .button-ghost { width: 100%; justify-content: center; height: 52px; }

  /* Browser mockup */
  .browser-chrome { padding: 10px 12px; }
  .bc-url { display: none; }
  .browser-wrap { margin-bottom: -30px; }

  /* Cards */
  .pain-card, .sol-card { padding: 28px 24px; }
  .pain-card h3, .sol-card h3 { font-size: 1rem; }
  .pc-num { font-size: 4rem; }

  /* Portfolio */
  .portfolio-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Especialidades */
  #especialidades .spec-grid { grid-template-columns: 1fr; }

  /* Processo */
  .proc-num { width: 40px; height: 40px; font-size: 0.75rem; }

  /* Depoimentos */
  .grid-3.testi { grid-template-columns: 1fr; }

  /* FAQ */
  .faq-item { padding: 24px 20px; }
  .faq-item h3 { font-size: 1rem; }

  /* CTA Botões */
  .cta-btns { flex-direction: column; align-items: stretch; gap: 12px; }
  .cta-btns .button,
  .cta-btns .button-ghost { width: 100%; justify-content: center; height: 52px; }

  /* CTA texto */
  .cta-inner p { font-size: 0.95rem; }
}

/* ── 560px: Mobile Pequeno ── */
@media (max-width:560px) {
  /* Container */
  .container { width: calc(100% - 28px); }

  /* Tipografia geral */
  .sec-header h2, .cta-inner h2 { font-size: clamp(1.5rem, 7vw, 2rem); }
  .hero h1 { font-size: clamp(1.6rem, 8vw, 2.2rem); }

  /* Header */
  .logo-img { height: 26px; }
  .site-header { padding: 20px 0; }
  .site-header.scrolled { padding: 14px 0; }

  /* Hero */
  .hero { padding: 90px 0 0; }
  .hero-center { margin-bottom: 32px; }
  .hero-sub { font-size: 0.9rem; max-width: 100%; }
  .eyebrow { font-size: 0.72rem; padding: 6px 11px; }

  /* Stats */
  .stats-row { padding: 16px 8px; border-radius: var(--r); }
  .stat-item { flex: 1 1 45%; padding: 16px 12px; }
  .stat-num { font-size: 2rem; }

  /* Cards */
  .pain-card, .sol-card { padding: 24px 20px; }
  .sol-icon { width: 40px; height: 40px; border-radius: 10px; }

  /* Port cards */
  .port-info { padding: 20px 16px; }
  .port-info h3 { font-size: 1rem; }
  .port-info p { font-size: 0.82rem; }

  /* Processo */
  .proc-step h3 { font-size: 1rem; }
  .proc-num { margin-bottom: 14px; }

  /* FAQ */
  .faq-item { padding: 20px 16px; }
  .faq-grid { gap: 12px; }

  /* Depoimentos */
  .testi-masonry { margin-top: 32px; gap: 10px; }
  .testi-card-new { flex: 0 0 260px; width: 260px; padding: 18px; }
  .testi-track-left,
  .testi-track-right { animation-duration: 45s; }

  /* CTA */
  .cta-section { padding: 60px 0; }

  /* WhatsApp */
  .whatsapp-float { right: 16px; bottom: 16px; width: 50px; height: 50px; }
  .whatsapp-float svg { width: 23px; height: 23px; }

  /* Footer */
  .footer-brand span { font-size: 0.78rem; }
  .footer-copy { font-size: 0.75rem; text-align: left; }
}
