/* ============================================================
   PRUMO COMUNICAÇÃO — PREMIUM DARK STYLESHEET v2
   Paleta da marca: Azul escuro #1e2a6e | Azul claro #2196d3
   ============================================================ */

:root {
  --bg: #06070f;
  --bg-2: #090b14;
  --bg-3: #0b0d18;
  --surface: rgba(255,255,255,0.04);
  --surface-hover: rgba(255,255,255,0.07);
  --border: rgba(255,255,255,0.08);
  --border-hover: rgba(33,150,211,0.4);

  --white: #ffffff;
  --white-70: rgba(255,255,255,0.7);
  --white-40: rgba(255,255,255,0.4);
  --white-20: rgba(255,255,255,0.2);
  --white-10: rgba(255,255,255,0.1);

  /* CORES DA MARCA PRUMO */
  --brand-dark: #1e2a6e;     /* azul escuro */
  --brand-blue: #2196d3;     /* azul claro */
  --brand-dark-2: #253380;   /* azul escuro mais vivo */
  --brand-blue-2: #4ab3e8;   /* azul claro mais suave */

  /* Glows com as cores da marca */
  --accent: #2196d3;
  --accent-2: #4ab3e8;
  --accent-dark: #1e2a6e;
  --accent-glow: rgba(33,150,211,0.28);
  --accent-glow-2: rgba(33,150,211,0.10);
  --accent-dark-glow: rgba(30,42,110,0.5);

  --font-main: 'Space Grotesk', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --font-body: 'Inter', sans-serif;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  --ease: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-2: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { border: none; background: none; cursor: pointer; font: inherit; }
ul { list-style: none; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--brand-blue); border-radius: 2px; }
::selection { background: var(--accent-glow); color: var(--white); }

/* ── CURSOR PERSONALIZADO COM LOGO ── */
.cursor {
  position: fixed;
  width: 28px; height: 28px;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, opacity 0.3s;
  mix-blend-mode: normal;
  filter: drop-shadow(0 0 8px rgba(33,150,211,0.8));
}
.cursor img {
  width: 100%; height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 0 4px rgba(33,150,211,1));
}
.cursor-follower {
  position: fixed;
  width: 48px; height: 48px;
  border: 1px solid rgba(33,150,211,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s var(--ease), opacity 0.3s, width 0.3s, height 0.3s, border-color 0.3s;
  opacity: 0.4;
}
body:hover .cursor { opacity: 1; }
body:not(:hover) .cursor { opacity: 0; }
@media (hover: none) { .cursor, .cursor-follower { display: none; } }

/* ── CONTAINER ── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 48px; }
@media (max-width: 768px) { .container { padding: 0 24px; } }

/* ── GLASS ── */
.glass {
  background: rgba(33,150,211,0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(33,150,211,0.12);
  border-radius: var(--r-lg);
}

/* ── TEXT GRADIENT — cores da marca ── */
.text-gradient {
  background: linear-gradient(120deg, var(--brand-blue) 0%, var(--brand-blue-2) 50%, #fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── SECTION TAGS (sem numeração) ── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  border: 1px solid rgba(33,150,211,0.3);
  border-radius: 100px;
  background: rgba(33,150,211,0.06);
  margin-bottom: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-blue);
}
.tag-number { display: none; } /* REMOVIDA A NUMERAÇÃO */
.section-header { text-align: center; margin-bottom: 72px; }
.section-header .section-tag { display: inline-flex; }

/* ── SECTION TITLE ── */
.section-title {
  font-family: var(--font-main);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.section-title em { font-style: italic; font-weight: 300; color: var(--white-70); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-blue) 100%);
  color: #fff;
  border-radius: 100px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px var(--accent-glow); }
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary svg { flex-shrink: 0; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  color: var(--white-70);
  border: 1px solid rgba(33,150,211,0.25);
  border-radius: 100px;
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s var(--ease);
}
.btn-ghost:hover { color: var(--white); border-color: var(--brand-blue); background: rgba(33,150,211,0.1); }
.btn-large { padding: 18px 36px; font-size: 15px; }
.btn-full { width: 100%; justify-content: center; border-radius: var(--r-md); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100; padding: 18px 0;
  transition: all 0.4s var(--ease);
}
.nav.scrolled {
  padding: 10px 0;
  background: rgba(6,7,15,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(33,150,211,0.12);
}
.nav-container {
  max-width: 1240px; margin: 0 auto; padding: 0 48px;
  display: flex; align-items: center; gap: 40px;
}
.nav-logo {
  display: flex; align-items: center; margin-right: auto;
}
.nav-logo-full {
  height: 36px; width: auto; object-fit: contain;
  /* logo JPG tem fundo branco — aplicamos mix-blend-mode para integrar */
  mix-blend-mode: screen;
  filter: brightness(1.05) contrast(1.05);
  transition: opacity 0.3s;
}
.nav-logo-full:hover { opacity: 0.85; }
.logo-text {
  font-family: var(--font-main); font-weight: 700;
  font-size: 18px; letter-spacing: 0.15em; color: var(--white);
}
.nav-links { display: flex; gap: 36px; }
.nav-links a {
  font-family: var(--font-body); font-size: 13px; font-weight: 500;
  color: var(--white-40); letter-spacing: 0.03em; transition: color 0.3s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px; background: var(--brand-blue); transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-ig {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid rgba(33,150,211,0.25); border-radius: 50%;
  color: var(--white-40); transition: all 0.3s var(--ease);
}
.nav-ig:hover { color: var(--brand-blue); border-color: var(--brand-blue); background: rgba(33,150,211,0.08); transform: translateY(-1px); }
.nav-cta {
  padding: 9px 20px;
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-blue) 100%);
  color: #fff; border-radius: 100px;
  font-family: var(--font-main); font-weight: 600; font-size: 12px;
  letter-spacing: 0.03em; transition: all 0.3s var(--ease); white-space: nowrap;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 20px var(--accent-glow); }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px; padding: 4px; width: 28px;
}
.nav-toggle span {
  display: block; height: 1.5px; background: var(--white); border-radius: 2px; transition: all 0.3s;
}
@media (max-width: 900px) {
  .nav-links, .nav-cta, .nav-ig { display: none; }
  .nav-toggle { display: flex; }
  .nav-container { padding: 0 24px; }
}
.mobile-menu {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg); z-index: 99;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.4s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 36px; text-align: center; }
.mobile-menu a {
  font-family: var(--font-main); font-size: 32px; font-weight: 700;
  color: var(--white-40); transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--brand-blue); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden; padding: 120px 0 80px;
}
#particleCanvas {
  position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.7;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(33,150,211,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33,150,211,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.hero-glow-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(30,42,110,0.35) 0%, transparent 70%);
  top: -150px; right: -150px;
  animation: glowPulse 8s ease-in-out infinite;
}
.hero-glow-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(33,150,211,0.18) 0%, transparent 70%);
  bottom: -50px; left: -100px;
  animation: glowPulse 10s ease-in-out infinite reverse;
}
.hero-glow-3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(74,179,232,0.12) 0%, transparent 70%);
  top: 40%; left: 35%;
  animation: glowPulse 12s ease-in-out infinite 3s;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}
.hero-content { position: relative; z-index: 2; max-width: 1240px; margin: 0 auto; padding: 0 48px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px;
  border: 1px solid rgba(33,150,211,0.35); border-radius: 100px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--brand-blue); margin-bottom: 40px; background: rgba(33,150,211,0.07);
}
.tag-dot {
  width: 5px; height: 5px; background: var(--brand-blue); border-radius: 50%;
  animation: tagBlink 2s ease-in-out infinite;
}
@keyframes tagBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero-title {
  display: flex; flex-direction: column; gap: 0; margin-bottom: 32px;
}
.title-line {
  font-family: var(--font-main);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 800; line-height: 1.0; letter-spacing: -0.03em; display: block;
}
.title-accent {
  background: linear-gradient(120deg, var(--brand-blue) 0%, var(--brand-blue-2) 60%, #fff 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  font-style: italic; font-weight: 300;
}
.title-outline {
  -webkit-text-stroke: 1px rgba(33,150,211,0.35); color: transparent;
}
.hero-sub {
  font-size: 17px; line-height: 1.7; color: var(--white-40); margin-bottom: 48px; max-width: 520px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 72px; }
.hero-stats { display: flex; gap: 0; align-items: center; }
.stat { display: flex; flex-direction: column; padding-right: 48px; }
.stat-num {
  font-family: var(--font-main); font-size: 40px; font-weight: 800;
  color: var(--white); line-height: 1; letter-spacing: -0.03em;
}
.stat-plus { font-family: var(--font-main); font-size: 24px; font-weight: 800; color: var(--brand-blue); vertical-align: top; }
.stat-label {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white-40); margin-top: 4px; font-family: var(--font-mono);
}
.stat-divider { width: 1px; height: 40px; background: rgba(33,150,211,0.2); margin-right: 48px; }
.hero-scroll {
  position: absolute; bottom: 48px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 2;
}
.hero-scroll span {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--white-20);
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(33,150,211,0.4), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@media (max-width: 768px) {
  .hero-content { padding: 0 24px; }
  .hero-stats { flex-wrap: wrap; }
  .stat { padding-right: 24px; }
  .stat-divider { margin-right: 24px; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-section {
  overflow: hidden;
  border-top: 1px solid rgba(33,150,211,0.12);
  border-bottom: 1px solid rgba(33,150,211,0.12);
  padding: 16px 0;
  background: var(--bg-2);
}
.marquee-track { display: flex; overflow: hidden; }
.marquee-inner {
  display: flex; gap: 28px; align-items: center;
  white-space: nowrap; animation: marquee 30s linear infinite; flex-shrink: 0;
}
.marquee-inner span {
  font-family: var(--font-main); font-size: 13px; font-weight: 500;
  letter-spacing: 0.05em; color: var(--white-40); text-transform: uppercase;
}
.marquee-dot { color: var(--brand-blue) !important; font-size: 18px !important; }
.marquee-logo {
  width: 22px; height: 22px; object-fit: contain;
  filter: brightness(0) invert(1); opacity: 0.3; flex-shrink: 0;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   SOBRE
   ============================================================ */
.sobre { padding: 120px 0; background: var(--bg); }
.sobre-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.sobre-text { font-size: 16px; color: var(--white-70); line-height: 1.8; margin-bottom: 20px; }
.sobre-text strong { color: var(--white); font-weight: 600; }
.sobre-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.tag-pill {
  padding: 6px 16px; border: 1px solid rgba(33,150,211,0.25); border-radius: 100px;
  font-size: 12px; font-family: var(--font-mono); letter-spacing: 0.08em;
  color: var(--white-40); transition: all 0.3s;
}
.tag-pill:hover { border-color: var(--brand-blue); color: var(--brand-blue); }
.visual-card {
  padding: 28px; margin-top: 40px; position: relative; overflow: hidden;
}
.visual-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--brand-dark), var(--brand-blue), var(--brand-dark));
}
/* vc-icon removed */
.visual-card p { font-size: 14px; color: var(--white-70); line-height: 1.7; }
@media (max-width: 900px) { .sobre-layout { grid-template-columns: 1fr; gap: 48px; } }

/* ============================================================
   SERVIÇOS
   ============================================================ */
.servicos { padding: 120px 0; background: var(--bg-2); position: relative; }
.servicos::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(30,42,110,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.servicos-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card {
  padding: 32px 28px; position: relative; overflow: hidden;
  transition: all 0.4s var(--ease); cursor: pointer;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at top left, rgba(33,150,211,0.07), transparent 70%);
  opacity: 0; transition: opacity 0.4s;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-blue), transparent);
  opacity: 0; transition: opacity 0.4s;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(33,150,211,0.3); box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px rgba(33,150,211,0.07); }
.service-card:hover::before, .service-card:hover::after { opacity: 1; }
.service-card:hover .sc-icon { color: var(--brand-blue); }
.service-card:hover .sc-arrow { opacity: 1; transform: translateX(4px); }
.sc-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 24px; }
.sc-icon { color: var(--white-40); transition: color 0.3s; }
.sc-num { display: none; } /* REMOVIDA NUMERAÇÃO */
.service-card h3 {
  font-family: var(--font-main); font-size: 16px; font-weight: 600;
  margin-bottom: 12px; color: var(--white); line-height: 1.3;
}
.service-card p { font-size: 13px; color: var(--white-40); line-height: 1.7; margin-bottom: 20px; }
.sc-arrow { font-size: 18px; color: var(--brand-blue); opacity: 0; transition: all 0.3s var(--ease); }
@media (max-width: 1100px) { .servicos-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .servicos-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .servicos-grid { grid-template-columns: 1fr; } }

/* ============================================================
   DIFERENCIAIS
   ============================================================ */
.diferenciais { padding: 120px 0; background: var(--bg); position: relative; overflow: hidden; }
.diferenciais-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 60% at 80% 50%, rgba(30,42,110,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.dif-layout { display: grid; grid-template-columns: 1fr 380px; gap: 80px; align-items: start; }
.dif-item {
  display: grid; grid-template-columns: 36px 1fr; gap: 20px;
  padding: 28px 0; border-bottom: 1px solid rgba(33,150,211,0.1);
  transition: all 0.3s; cursor: default;
}
.dif-item:hover { border-bottom-color: rgba(33,150,211,0.35); }
.dif-icon { width: 36px; height: 36px; display: flex; align-items: flex-start; padding-top: 2px; }
.dif-icon img { width: 22px; height: 22px; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.25; transition: opacity 0.3s; }
.dif-item:hover .dif-icon img { opacity: 0.6; filter: brightness(0) saturate(100%) invert(49%) sepia(97%) saturate(407%) hue-rotate(166deg) brightness(101%) contrast(96%); }
.dif-content h4 { font-family: var(--font-main); font-size: 16px; font-weight: 600; margin-bottom: 8px; color: var(--white); }
.dif-content p { font-size: 13px; color: var(--white-40); line-height: 1.7; }
.dif-numbers { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 100px; }
.big-num { padding: 28px; text-align: center; position: relative; overflow: hidden; }
.big-num::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-blue), transparent); opacity: 0.6;
}
.num-value { font-family: var(--font-main); font-size: 52px; font-weight: 800; color: var(--white); line-height: 1; letter-spacing: -0.03em; }
.big-num > span:nth-child(2) { font-family: var(--font-main); font-size: 32px; font-weight: 800; color: var(--brand-blue); vertical-align: top; }
.num-label { display: block; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white-40); margin-top: 8px; }
.dif-quote { padding: 24px; }
.quote-text { font-family: var(--font-main); font-size: 14px; font-style: italic; line-height: 1.6; color: var(--white-70); }
@media (max-width: 1000px) {
  .dif-layout { grid-template-columns: 1fr; }
  .dif-numbers { position: static; flex-direction: row; flex-wrap: wrap; }
  .big-num { flex: 1; min-width: 140px; }
}

/* ============================================================
   SHOWCASE — EM CONSTRUÇÃO
   ============================================================ */
.showcase { padding: 120px 0; background: var(--bg-3); }
.showcase-construction { max-width: 680px; margin: 0 auto; }
.sc-construction-inner {
  padding: 60px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sc-construction-inner::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--brand-dark), var(--brand-blue), var(--brand-dark));
}
.sc-construction-inner::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--brand-dark), var(--brand-blue), var(--brand-dark));
}
.scc-logo {
  width: 72px; height: 72px; margin: 0 auto 32px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(30,42,110,0.5), rgba(33,150,211,0.2));
  border-radius: 50%; border: 1px solid rgba(33,150,211,0.25);
  padding: 14px;
}
.scc-logo img { width: 100%; height: 100%; object-fit: contain; filter: brightness(0) invert(1); }
.sc-construction-inner h3 {
  font-family: var(--font-main); font-size: 28px; font-weight: 700;
  margin-bottom: 16px; color: var(--white); letter-spacing: -0.02em;
}
.sc-construction-inner p {
  font-size: 15px; color: var(--white-70); line-height: 1.7; margin-bottom: 12px;
}
.scc-sub { font-size: 13px !important; color: var(--white-40) !important; }
.scc-bar {
  width: 100%; height: 2px; background: rgba(33,150,211,0.1);
  border-radius: 2px; margin: 36px 0 12px; overflow: hidden;
}
.scc-bar-fill {
  height: 100%; width: 40%;
  background: linear-gradient(90deg, var(--brand-dark), var(--brand-blue));
  border-radius: 2px;
  animation: barPulse 3s ease-in-out infinite;
}
@keyframes barPulse {
  0% { width: 30%; }
  50% { width: 55%; }
  100% { width: 30%; }
}
.scc-label {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--brand-blue); opacity: 0.7;
  display: block; margin-bottom: 36px;
}
.scc-cta { display: inline-flex; }
@media (max-width: 600px) { .sc-construction-inner { padding: 40px 28px; } }

/* ============================================================
   PROCESSO
   ============================================================ */
.processo { padding: 120px 0; background: var(--bg); }
.processo-timeline {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative;
}
.processo-timeline::before {
  content: ''; position: absolute; top: 30px; left: 20px; right: 20px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(33,150,211,0.2), rgba(33,150,211,0.2), rgba(33,150,211,0.2), transparent);
  z-index: 0;
}
.pt-item {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 10px; position: relative; z-index: 1;
}
.pt-num {
  width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 12px; font-weight: 700;
  color: var(--brand-blue); border: 1px solid rgba(33,150,211,0.3);
  background: var(--bg); margin-bottom: 24px; transition: all 0.3s; flex-shrink: 0;
}
.pt-item:hover .pt-num { background: rgba(33,150,211,0.1); border-color: var(--brand-blue); }
.pt-connector { display: none; }
.pt-content {
  padding: 24px 16px; width: 100%; transition: all 0.4s var(--ease);
  background: rgba(33,150,211,0.04);
}
.pt-content:hover { border-color: rgba(33,150,211,0.3); transform: translateY(-4px); }
.pt-icon { font-size: 20px; color: var(--brand-blue); margin-bottom: 12px; opacity: 0.6; }
.pt-content h4 { font-family: var(--font-main); font-size: 15px; font-weight: 600; margin-bottom: 8px; color: var(--white); }
.pt-content p { font-size: 12px; color: var(--white-40); line-height: 1.6; }
@media (max-width: 1000px) {
  .processo-timeline { grid-template-columns: 1fr; gap: 24px; }
  .processo-timeline::before { display: none; }
  .pt-item { flex-direction: row; align-items: flex-start; text-align: left; gap: 20px; }
  .pt-num { flex-shrink: 0; }
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final {
  padding: 160px 0; background: var(--bg-2);
  position: relative; overflow: hidden; text-align: center;
}
.ctaf-glow { position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none; }
.ctaf-glow-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(30,42,110,0.35) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.ctaf-glow-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(33,150,211,0.15) 0%, transparent 70%);
  top: 0; right: 0;
}
.ctaf-content { position: relative; z-index: 2; }
.ctaf-logo {
  width: 72px; height: 72px; margin: 0 auto 32px;
  display: flex; align-items: center; justify-content: center;
}
.ctaf-logo img {
  width: 100%; height: 100%; object-fit: contain;
  filter: brightness(0) invert(1);
  animation: logoFloat 4s ease-in-out infinite;
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.ctaf-eyebrow {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--brand-blue); margin-bottom: 24px;
}
.ctaf-title {
  font-family: var(--font-main); font-size: clamp(48px, 7vw, 88px);
  font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; margin-bottom: 24px;
}
.ctaf-sub { font-size: 17px; color: var(--white-40); line-height: 1.7; margin-bottom: 48px; }

/* ============================================================
   CONTATO
   ============================================================ */
.contato { padding: 120px 0; background: var(--bg); }
.contato-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contato-sub { font-size: 15px; color: var(--white-40); line-height: 1.7; margin-bottom: 40px; }
.contato-info { display: flex; flex-direction: column; gap: 16px; }
.ci-item {
  display: flex; flex-direction: column; gap: 4px;
  padding: 16px 0; border-bottom: 1px solid rgba(33,150,211,0.1); transition: border-color 0.3s;
}
.ci-item:hover { border-bottom-color: rgba(33,150,211,0.35); }
.ci-label {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--brand-blue);
}
.ci-value { font-size: 14px; color: var(--white-70); transition: color 0.3s; }
.ci-item:hover .ci-value { color: var(--white); }
.contato-form { padding: 40px; background: rgba(33,150,211,0.04); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--brand-blue); opacity: 0.8;
}
.form-group input, .form-group textarea {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(33,150,211,0.15);
  border-radius: var(--r-sm); padding: 12px 16px; color: var(--white);
  font-family: var(--font-body); font-size: 14px; outline: none; transition: border-color 0.3s; resize: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--brand-blue); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--white-20); }
@media (max-width: 900px) {
  .contato-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { padding: 72px 0 40px; background: var(--bg-2); border-top: 1px solid rgba(33,150,211,0.1); }
.footer-top {
  display: grid; grid-template-columns: 1fr auto; gap: 80px;
  margin-bottom: 60px; align-items: start;
}
.footer-brand .footer-logo {
  display: flex; align-items: center; margin-bottom: 20px;
}
.footer-logo-full {
  height: 44px; width: auto; object-fit: contain;
  mix-blend-mode: screen;
  filter: brightness(1.05) contrast(1.05);
}
.footer-brand p { font-size: 13px; color: var(--white-40); line-height: 1.7; }
.footer-links { display: flex; gap: 60px; }
.fl-col { display: flex; flex-direction: column; gap: 12px; }
.fl-title {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--brand-blue); opacity: 0.7; margin-bottom: 4px;
}
.fl-col a { font-size: 13px; color: var(--white-40); transition: color 0.3s; }
.fl-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid rgba(33,150,211,0.08);
  font-size: 12px; color: var(--white-20);
}
@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { flex-wrap: wrap; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ============================================================
   ANIMATIONS — REVEAL
   ============================================================ */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0; transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-up.visible, .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal-up, .reveal-left, .reveal-right { opacity: 1; transform: none; }
}

/* ── SOCIAL LINKS ── */
.social-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--white-40); transition: color 0.3s;
}
.social-link svg { flex-shrink: 0; }
.social-link:hover { color: var(--white); }
.instagram-link:hover { color: var(--brand-blue); }

/* ── CONTATO INSTAGRAM ── */
.ci-instagram {
  display: inline-flex; align-items: center; gap: 6px;
}

/* ── FORM FEEDBACK (WordPress AJAX) ── */
.form-feedback {
  font-size: 13px; padding: 10px 0; border-radius: 6px;
  display: none; margin-bottom: 12px;
}
.form-feedback.success { color: #4ab3e8; display: block; }
.form-feedback.error   { color: #e87c7c; display: block; }

/* ── WP CUSTOM LOGO override ── */
.nav-logo .custom-logo-link { display: flex; align-items: center; }
.nav-logo .custom-logo { height: 36px; width: auto; mix-blend-mode: screen; }
