:root {
  --c0: #04080f;
  --c1: #0a1525;
  --c2: #0f2040;
  --c3: #1a4a8a;
  --accent: #4facfe;
  --accent2: #74c5fe;
  --accent3: #a8d8ff;
  --gold: #f0c674;
  --w: #ffffff;
  --w80: rgba(255,255,255,0.80);
  --w50: rgba(255,255,255,0.50);
  --w20: rgba(255,255,255,0.20);
  --w10: rgba(255,255,255,0.10);
  --w06: rgba(255,255,255,0.06);
  --glow: rgba(79,172,254,0.22);
  --tr: 0.28s cubic-bezier(0.4,0,0.2,1);
  --r: 16px;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--c0);
  color: var(--w80);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ──────────────────────────────────────
   NAVBAR
─────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: transparent;
  transition: background var(--tr), box-shadow var(--tr), backdrop-filter var(--tr);
}

.navbar.scrolled {
  background: rgba(4,8,15,0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(79,172,254,0.12);
  box-shadow: 0 4px 40px rgba(0,0,0,0.5);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
  transition: filter var(--tr), transform var(--tr);
}

.nav-logo:hover {
  filter: drop-shadow(0 0 10px rgba(79,172,254,0.5));
  transform: translateY(-1px);
}

.nav-logo-symbol { height: 38px; width: auto; flex-shrink: 0; }
.nav-logo-text { display: flex; flex-direction: column; gap: 2px; }

.nav-logo-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--w);
  letter-spacing: 0.18em;
  line-height: 1;
  white-space: nowrap;
}

.nav-logo-sub {
  font-size: 0.56rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.2em;
  line-height: 1;
  white-space: nowrap;
}

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }

.nav-links a {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--w80);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  letter-spacing: 0.02em;
  transition: color var(--tr), background var(--tr);
}

.nav-links a:hover { color: var(--w); background: var(--w10); }
.nav-links a.active { color: var(--accent2); }

.nav-cta {
  color: var(--c0) !important;
  background: linear-gradient(120deg, var(--accent), var(--accent2)) !important;
  padding: 9px 22px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 20px rgba(79,172,254,0.4) !important;
  transition: transform var(--tr), box-shadow var(--tr) !important;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(79,172,254,0.6) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--w80);
  border-radius: 2px;
  transition: all var(--tr);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 12px 24px 20px;
  gap: 4px;
  border-top: 1px solid var(--w10);
  background: rgba(4,8,15,0.96);
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  color: var(--w80);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 12px 14px;
  border-radius: 10px;
  transition: background var(--tr), color var(--tr);
}

.nav-mobile a:hover { background: var(--w10); color: var(--w); }

.nav-mobile .cta-m {
  margin-top: 8px;
  text-align: center;
  background: linear-gradient(120deg, var(--accent), var(--accent2));
  color: var(--c0) !important;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(79,172,254,0.4);
}

/* ──────────────────────────────────────
   HERO — estrutura base
─────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  background: var(--c0);
}

/* Gradientes de ambiente — desktop e mobile herdam */
.hero-services {
  background:
    radial-gradient(ellipse at 20% 30%, rgba(26,74,138,0.35) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(79,172,254,0.18) 0%, transparent 60%),
    linear-gradient(160deg, var(--c0) 0%, var(--c1) 45%, #07182f 100%);
}

/* ── CAMADA DE IMAGEM (desktop: servicos.png) ──
   No mobile esta div troca de imagem via media query
   mantendo TODOS os mesmos efeitos: mix-blend-mode,
   blur, saturate, opacidade                         */
.hero-bg-abstract {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.18;
  mix-blend-mode: screen;
  background-image: url('../imagens/servicos.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(2px) saturate(1.1);
  transition: opacity var(--tr);
}

/* Overlay de degradê sobre a foto */
.hero-overlay-services {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(4,8,15,0.45) 0%,
      transparent 25%,
      transparent 70%,
      rgba(4,8,15,0.85) 100%
    );
  pointer-events: none;
}

/* Canvas de partículas */
#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  opacity: 0.85;
}

.hero-inner {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 130px 32px 110px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

/* ───── EYEBROW ───── */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--accent2);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  animation: fadeUp 0.7s 0.1s both;
}

.eyebrow-line {
  display: block;
  width: 44px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent));
}

/* ───── TÍTULO ───── */
.hero-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.85rem, 3.2vw, 2.7rem);
  color: var(--w);
  line-height: 1.18;
  letter-spacing: -0.018em;
  max-width: 580px;
  animation: fadeUp 0.7s 0.22s both;
  text-shadow: 0 1px 20px rgba(4,8,15,0.4);
}

.hero-title .hl {
  display: inline-block;
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent2) 50%, var(--accent3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 100%;
  animation: shimmer 6s linear infinite;
  font-weight: 700;
}

@keyframes shimmer {
  0%   { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

/* ───── SUBTÍTULO ───── */
.hero-sub {
  font-size: 0.96rem;
  font-weight: 300;
  color: var(--w80);
  max-width: 480px;
  line-height: 1.75;
  letter-spacing: 0.005em;
  animation: fadeUp 0.7s 0.34s both;
}

/* ───── CHIPS ───── */
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  animation: fadeUp 0.7s 0.46s both;
  max-width: 720px;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 15px;
  border-radius: 50px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--w80);
  font-size: 0.78rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.015em;
  transition: all var(--tr);
  cursor: pointer;
}

.chip:hover {
  background: rgba(79,172,254,0.16);
  border-color: rgba(79,172,254,0.42);
  color: var(--w);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(79,172,254,0.22);
}

/* ───── ONDAS SVG ───── */
.hero-waves {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 110px;
  z-index: 3;
  pointer-events: none;
}

.wave-1 { animation: waveSlide 14s ease-in-out infinite; }
.wave-2 { animation: waveSlide 10s ease-in-out infinite reverse; }

@keyframes waveSlide {
  0%, 100% { transform: translateX(0); }
  50%       { transform: translateX(-40px); }
}

/* ───── SCROLL HINT ───── */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--w50);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  animation: fadeUp 1s 1.2s both;
}

.scroll-line {
  width: 1px;
  height: 38px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  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; }
}

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

/* ──────────────────────────────────────
   SECTION — utilitários
─────────────────────────────────────── */
section { padding: 100px 32px; max-width: 1200px; margin: 0 auto; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent2);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--accent);
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  color: var(--w);
  line-height: 1.2;
  letter-spacing: -0.012em;
  margin-bottom: 16px;
}

.section-title .hl {
  background: linear-gradient(120deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub {
  font-size: 0.96rem;
  color: var(--w50);
  max-width: 520px;
  line-height: 1.8;
  font-weight: 300;
}

/* ──────────────────────────────────────
   BUTTONS
─────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(120deg, var(--accent), var(--accent2));
  color: var(--c0);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 13px 28px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 30px rgba(79,172,254,0.42);
  transition: transform var(--tr), box-shadow var(--tr);
  letter-spacing: 0.02em;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(79,172,254,0.6);
}

.btn-primary svg { width: 17px; height: 17px; }

/* ──────────────────────────────────────
   FEATURED — Hipnoterapia
─────────────────────────────────────── */
.featured-wrap {
  background: var(--c0);
  position: relative;
  overflow: hidden;
  padding-top: 40px;
}

.featured-wrap::before {
  content: '';
  position: absolute;
  top: 20%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(79,172,254,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}

.featured-media {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(79,172,254,0.15);
}

.featured-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 1s cubic-bezier(0.2,0.8,0.2,1);
}

.featured-media:hover .featured-img { transform: scale(1.05); }

.featured-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 50%, rgba(4,8,15,0.4) 100%),
    radial-gradient(ellipse at center, transparent 50%, rgba(4,8,15,0.3) 100%);
  pointer-events: none;
}

.featured-badge-float {
  position: absolute;
  top: 20px; left: 20px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(4,8,15,0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(79,172,254,0.35);
  color: var(--accent2);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 50px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulseD 2.2s ease-in-out infinite;
}

@keyframes pulseD {
  0%,100% { opacity:1; transform: scale(1); }
  50%     { opacity:0.4; transform: scale(0.7); }
}

.featured-content { display: flex; flex-direction: column; gap: 18px; }

.featured-p {
  font-size: 1rem;
  color: var(--w80);
  line-height: 1.8;
  font-weight: 300;
}

.featured-p strong { color: var(--accent3); font-weight: 500; }

.featured-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 4px 0;
}

.featured-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--w80);
  font-size: 0.94rem;
}

.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(79,172,254,0.15);
  color: var(--accent2);
  font-size: 0.78rem;
  font-weight: 700;
  flex-shrink: 0;
}

.featured-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.featured-meta {
  font-size: 0.76rem;
  color: var(--w50);
  letter-spacing: 0.02em;
}

/* ──────────────────────────────────────
   GRID DE SERVIÇOS
─────────────────────────────────────── */
.servicos-wrap {
  background: linear-gradient(180deg, var(--c0) 0%, var(--c1) 50%, var(--c0) 100%);
  position: relative;
  overflow: hidden;
}

.servicos-wrap::after {
  content: '';
  position: absolute;
  bottom: 20%; right: -8%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(79,172,254,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.servicos-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  gap: 24px;
  flex-wrap: wrap;
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.srv-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--tr), border-color var(--tr), box-shadow var(--tr);
  cursor: default;
  scroll-margin-top: 90px;
}

.srv-card:hover {
  transform: translateY(-6px);
  border-color: rgba(79,172,254,0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px rgba(79,172,254,0.1);
}

.srv-img {
  position: relative;
  aspect-ratio: 2 / 2;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--c1);
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.2,0.8,0.2,1);
}

.srv-card:hover .srv-img { transform: scale(1.04); }

.srv-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(4,8,15,0.15) 0%,
    transparent 40%,
    rgba(4,8,15,0.6) 100%
  );
  transition: opacity var(--tr);
}

.srv-num {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 2;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.76rem;
  color: var(--w);
  background: rgba(4,8,15,0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(79,172,254,0.3);
  padding: 5px 11px;
  border-radius: 50px;
  letter-spacing: 0.08em;
}

.srv-body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.srv-h {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--w);
  line-height: 1.28;
  letter-spacing: -0.01em;
}

.srv-p {
  font-size: 0.87rem;
  color: var(--w50);
  line-height: 1.65;
  flex: 1;
  font-weight: 300;
}

.srv-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 4px; }

.srv-tag {
  display: inline-block;
  background: rgba(79,172,254,0.1);
  border: 1px solid rgba(79,172,254,0.2);
  color: var(--accent2);
  font-size: 0.68rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 0.04em;
}

/* ──────────────────────────────────────
   CTA BANNER
─────────────────────────────────────── */
.cta-wrap {
  background: linear-gradient(160deg, var(--c1) 0%, var(--c2) 50%, #1a5fa8 100%);
  padding: 0;
  overflow: hidden;
  position: relative;
}

.cta-wrap::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(79,172,254,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-text { flex: 1; min-width: 280px; }

.cta-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  color: var(--w);
  line-height: 1.22;
  letter-spacing: -0.012em;
  margin-bottom: 12px;
}

.cta-sub { font-size: 0.96rem; color: var(--w80); line-height: 1.7; font-weight: 300; }

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.cta-note { font-size: 0.74rem; color: var(--w50); text-align: right; letter-spacing: 0.02em; }

/* ──────────────────────────────────────
   FOOTER
─────────────────────────────────────── */
footer {
  background: linear-gradient(160deg, var(--c0) 0%, #040a14 100%);
  border-top: 1px solid rgba(79,172,254,0.1);
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(79,172,254,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 32px 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
}

.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-desc { font-size: 0.84rem; color: var(--w50); line-height: 1.75; max-width: 280px; font-weight: 300; }
.footer-socials { display: flex; gap: 10px; }

.social-btn {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--w10);
  border: 1px solid var(--w20);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background var(--tr), border-color var(--tr), transform var(--tr);
}

.social-btn:hover {
  background: rgba(79,172,254,0.2);
  border-color: rgba(79,172,254,0.4);
  transform: translateY(-2px);
}

.social-btn svg { width: 15px; height: 15px; fill: var(--w80); }

.footer-col h5 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--w);
  margin-bottom: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-bottom: 10px;
  position: relative;
}

.footer-col h5::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 24px; height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  border-radius: 2px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-col ul a {
  font-size: 0.84rem;
  color: var(--w50);
  text-decoration: none;
  transition: color var(--tr), padding-left var(--tr);
}

.footer-col ul a:hover { color: var(--w80); padding-left: 4px; }

.contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.contact-item svg { width: 14px; height: 14px; fill: var(--accent); flex-shrink: 0; margin-top: 3px; }
.contact-item span { font-size: 0.82rem; color: var(--w50); line-height: 1.55; }

.footer-bottom {
  border-top: 1px solid var(--w10);
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p { font-size: 0.78rem; color: var(--w50); }
.footer-bottom span { color: var(--accent2); }

.footer-legal { display: flex; gap: 20px; }

.footer-legal a {
  font-size: 0.78rem;
  color: var(--w50);
  text-decoration: none;
  transition: color var(--tr);
}

.footer-legal a:hover { color: var(--w80); }

/* ──────────────────────────────────────
   WhatsApp FAB
─────────────────────────────────────── */
.wa-fab {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 300;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  text-decoration: none;
  transition: transform var(--tr), box-shadow var(--tr);
}

.wa-fab:hover {
  transform: translateY(-3px) scale(1.07);
  box-shadow: 0 12px 36px rgba(37,211,102,0.65);
}

.wa-fab svg { width: 26px; height: 26px; fill: #fff; }

/* ──────────────────────────────────────
   REVEAL
─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

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

/* ─── TABLET ≤ 960px ─── */
@media (max-width: 960px) {
  .featured-grid { grid-template-columns: 1fr; gap: 40px; }
  .featured-media { max-width: 600px; margin: 0 auto; width: 100%; }
  .servicos-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .servicos-header { flex-direction: column; align-items: flex-start; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

/* ─── MOBILE ≤ 700px ─── */
@media (max-width: 700px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-inner { padding: 0 20px; }

  section { padding: 72px 20px; }

  .hero {
    min-height: 88vh;
    min-height: 88svh;
  }

  /* ── HERO MOBILE: troca só a imagem, mantém TODOS os efeitos ──
     mix-blend-mode, blur, saturate, opacidade — idênticos ao desktop
     Apenas background-image e background-position mudam             */
  .hero-bg-abstract {
    background-image: url('../imagens/servicosmobile.png');
    background-position: center top;
    /* Opacidade ligeiramente maior pois a foto mobile é mais nítida */
    opacity: 0.22;
    /* blur menor para preservar detalhes do rosto */
    filter: blur(1px) saturate(1.2);
    /* mix-blend-mode: screen — mantido igual ao desktop */
  }

  /* Canvas de partículas — levemente reduzido no mobile */
  #heroCanvas { opacity: 0.65; }

  /* Overlay adapta para proteger melhor o texto no mobile */
  .hero-overlay-services {
    background:
      linear-gradient(180deg,
        rgba(4,8,15,0.60) 0%,
        rgba(4,8,15,0.20) 30%,
        rgba(4,8,15,0.10) 60%,
        rgba(4,8,15,0.80) 100%
      );
  }

  .hero-inner { padding: 110px 20px 90px; gap: 20px; }
  .hero-eyebrow { font-size: 0.66rem; gap: 10px; }
  .eyebrow-line { width: 30px; }
  .hero-chips { gap: 6px; }
  .chip { padding: 6px 13px; font-size: 0.74rem; }
  .hero-waves { height: 70px; }

  .servicos-grid { grid-template-columns: 1fr; gap: 18px; }
  .featured-grid { gap: 28px; }
  .featured-cta { flex-direction: column; align-items: flex-start; gap: 12px; }

  .cta-actions { align-items: flex-start; }
  .cta-note { text-align: left; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; padding: 40px 20px 28px; }
  .footer-bottom { flex-direction: column; text-align: center; padding: 16px 20px; }
  .wa-fab { bottom: 20px; right: 20px; }
}

/* ─── MOBILE ESTREITO ≤ 480px ─── */
@media (max-width: 480px) {
  .hero-title { font-size: 1.7rem; }
  .featured-list li { font-size: 0.9rem; }
  .srv-body { padding: 20px 20px 24px; }

  .hero-bg-abstract {
    background-position: center center;
  }
}