/* ══════════════════════════════════════════
   RESET & BASE
══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }

:root {
  /* ── Paleta CMY literal da logo (extraída pixel a pixel de logo-dark.png) ── */
  --cyan-rgb:    0, 160, 225;   /* #00A0E1 */
  --magenta-rgb: 229, 4, 134;   /* #E50486 */
  --yellow-rgb:  252, 211, 9;   /* #FCD309 */

  /* Cores sólidas derivadas dos canais (compatibilidade com Tailwind/JS) */
  --cyan:    rgb(var(--cyan-rgb));
  --magenta: rgb(var(--magenta-rgb));
  --yellow:  rgb(var(--yellow-rgb));

  /* Gradiente tricromia CMY equilibrado, reutilizado em botões, logo e detalhes ativos */
  --gradient-cmy: linear-gradient(135deg, var(--yellow) 0%, var(--cyan) 55%, var(--magenta) 100%);

  --bg-primary:   #0B0B0F;
  --bg-secondary: #17181C;
  --border-el:    #2B2F36;
  --text-primary: #ffffff;
  --text-secondary: #94A3B8;
  --text-muted:   #64748B; /* texto terciário (legendas, rodapé) — legível em ambos os temas */

  /* Spacing scale */
  --section-py:   7rem;
  --container-px: 1.5rem;
  --card-p:       2.5rem;
}

/* Em tablets */
@media (max-width: 768px) {
  :root {
    --section-py:   4.5rem;
    --card-p:       1.75rem;
  }
}

/* Em celulares */
@media (max-width: 480px) {
  :root {
    --section-py:   3rem;
    --container-px: 1rem;
    --card-p:       1.25rem;
  }
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Public Sans', sans-serif;
  overflow-x: hidden;
  /* Safe area para notch/Dynamic Island */
  padding-left:  env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

/* Noise grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 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='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.35;
}

/* ── Scrollbar ── */
::-webkit-scrollbar        { width: 4px; }
::-webkit-scrollbar-track  { background: var(--bg-primary); }
::-webkit-scrollbar-thumb  { background: var(--border-el); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--cyan); }

/* ── Seleção de texto com a cor da marca, no lugar do azul padrão do navegador ── */
::selection {
  background: rgba(var(--magenta-rgb), 0.35);
  color: var(--text-primary);
}

/* ══════════════════════════════════════════
   TIPOGRAFIA — mobile-first com clamp() aprimorado
══════════════════════════════════════════ */
.font-display { font-family: 'Public Sans', sans-serif; }

.heading-xl {
  font-family: 'Public Sans', sans-serif;
  font-size: clamp(2rem, 8vw, 5.25rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.015em;
}
.heading-lg {
  font-family: 'Public Sans', sans-serif;
  font-size: clamp(1.65rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
}
.heading-md {
  font-family: 'Public Sans', sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
}
.heading-sm {
  font-family: 'Public Sans', sans-serif;
  font-size: clamp(1.4rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
}
.card-title {
  font-family: 'Public Sans', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 700;
  letter-spacing: -0.005em;
}

/* ── Gradient text ── */
.gradient-text {
  background: linear-gradient(
    to right,
    rgb(var(--yellow-rgb)) 0%,
    rgb(var(--cyan-rgb)) 50%,
    rgb(var(--magenta-rgb)) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-value,
.stat-value-sm {
  color: #ffffff;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

/* ══════════════════════════════════════════
   LAYOUT
══════════════════════════════════════════ */
.section-py    { padding-top: var(--section-py); padding-bottom: var(--section-py); }
.section-py-sm { padding-top: calc(var(--section-py) * 0.45); padding-bottom: calc(var(--section-py) * 0.45); }

.container {
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: var(--container-px);
  /* Também respeita safe-area */
  padding-left:  max(var(--container-px), env(safe-area-inset-left));
  padding-right: max(var(--container-px), env(safe-area-inset-right));
}

/* Grids responsivos */
.grid-2col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 640px) {
  .grid-2col { gap: 2.5rem; }
}
@media (min-width: 768px) {
  .grid-2col { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.grid-faq {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .grid-faq { grid-template-columns: 1fr 1.6fr; gap: 4rem; }
}

/* Grid de 3 colunas (serviços, depoimentos, stats) */
.grid-3col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .grid-3col { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}
@media (min-width: 1024px) {
  .grid-3col { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
}

/* Grid de 4 colunas (rodapé) */
.grid-4col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 480px) {
  .grid-4col { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .grid-4col { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
}

/* ══════════════════════════════════════════
   HERO — imagem de fundo ofuscada
══════════════════════════════════════════ */
#hero {
  background-color: #0b0b0f;
}
.light-theme #hero {
  background-color: #f6f4f0;
}

/* Camada 1 — cópia borrada e escurecida da foto: preenche as sobras laterais
   sem faixa morta quando a foto inteira (contain) não ocupa toda a largura */
.hero-photo-blur {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('fundo-hero.png') center center / cover no-repeat;
  filter: blur(30px) brightness(0.4) saturate(0.9);
  transform: scale(1.1);
  pointer-events: none;
}
.light-theme .hero-photo-blur {
  filter: blur(30px) brightness(1.15) saturate(0.85);
}

/* Camada 2 — foto nítida e INTEIRA (sem corte), centralizada, já com o véu
   de escurecimento por cima para dar contraste ao texto */
.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 75% 70% at 50% 45%, rgba(11,11,15,0.45), transparent 80%),
    linear-gradient(rgba(11,11,15,0.5), rgba(11,11,15,0.68)),
    url('fundo-hero.png') center top / cover no-repeat;
  pointer-events: none;
}
.light-theme .hero-photo {
  background:
    radial-gradient(ellipse 75% 70% at 50% 45%, rgba(246,244,240,0.55), transparent 80%),
    linear-gradient(rgba(246,244,240,0.6), rgba(246,244,240,0.78)),
    url('fundo-hero.png') center top / cover no-repeat;
}

/* ══════════════════════════════════════════
   ORBS ANIMADOS — reduzidos em mobile
══════════════════════════════════════════ */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  animation: floatGlow 15s infinite alternate ease-in-out;
}

.glow-orb-hero-a {
  width: clamp(200px, 50vw, 500px);
  height: clamp(200px, 50vw, 500px);
  background: radial-gradient(circle, rgba(var(--cyan-rgb), 0.13) 0%, transparent 70%);
  top: -10%; left: -10%;
}
.glow-orb-hero-b {
  width: clamp(150px, 40vw, 380px);
  height: clamp(150px, 40vw, 380px);
  background: radial-gradient(circle, rgba(var(--magenta-rgb), 0.10) 0%, transparent 70%);
  bottom: 10%; right: -5%;
  animation-delay: -7s;
}
.glow-orb-services {
  width: clamp(180px, 40vw, 400px);
  height: clamp(180px, 40vw, 400px);
  background: radial-gradient(circle, rgba(var(--yellow-rgb), 0.08) 0%, transparent 70%);
  top: 20%; right: -5%;
  animation-delay: -10s;
}
.glow-orb-simulator {
  width: clamp(200px, 50vw, 500px);
  height: clamp(200px, 50vw, 500px);
  background: radial-gradient(circle, rgba(var(--magenta-rgb), 0.07) 0%, transparent 70%);
  top: -20%; left: 50%;
  transform: translateX(-50%);
  animation-delay: -5s;
}
.glow-orb-why {
  width: clamp(180px, 45vw, 450px);
  height: clamp(180px, 45vw, 450px);
  background: radial-gradient(circle, rgba(var(--cyan-rgb), 0.08) 0%, transparent 70%);
  bottom: 0; left: -10%;
  animation-delay: -3s;
}


@keyframes floatGlow {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(80px, 40px) scale(1.15); }
  100% { transform: translate(-30px, 100px) scale(0.9); }
}

/* Hero grid */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(43,47,54,0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43,47,54,0.35) 1px, transparent 1px);
  background-size: clamp(40px, 10vw, 80px) clamp(40px, 10vw, 80px);
  pointer-events: none;
}

/* Retícula (halftone) — a textura clássica da impressão offset, num canto do Hero */
.hero-halftone {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(var(--cyan-rgb), 0.5) 1px, transparent 1.4px);
  background-size: 9px 9px;
  background-position: right bottom;
  mask-image: radial-gradient(circle at bottom right, black 0%, black 5%, transparent 55%);
  -webkit-mask-image: radial-gradient(circle at bottom right, black 0%, black 5%, transparent 55%);
  opacity: 0.5;
  pointer-events: none;
}

/* Marcas de registro de cor — referência às cruzetas de alinhamento de chapas na impressão offset */
.registration-mark {
  position: absolute;
  width: clamp(28px, 4vw, 40px);
  height: clamp(28px, 4vw, 40px);
  color: var(--text-secondary);
  opacity: 0.4;
  pointer-events: none;
}
.registration-mark-tl { top: 1.25rem;    left: 1.25rem; }
.registration-mark-br { bottom: 1.25rem; right: 1.25rem; }
@media (max-width: 640px) {
  .registration-mark { display: none; }
}

/* ══════════════════════════════════════════
   NAVEGAÇÃO — com suporte a menu mobile
══════════════════════════════════════════ */
.nav-root {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background:
    linear-gradient(rgba(11,11,15,0.5), rgba(11,11,15,0.5)),
    linear-gradient(135deg, rgba(var(--yellow-rgb),0.55) 0%, rgba(var(--cyan-rgb),0.6) 55%, rgba(var(--magenta-rgb),0.6) 100%);
  border-bottom: 1px solid var(--border-el);
  /* Safe area no topo (notch) */
  padding-top: env(safe-area-inset-top);
}
.nav-inner {
  max-width: 80rem;
  margin-inline: auto;
  padding: 0.875rem var(--container-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}

/* ── Logo: exibe apenas a versão do tema ativo (nunca as duas juntas) ── */
.logo-for-dark  { display: block !important; }
.logo-for-light { display: none  !important; }
.light-theme .logo-for-dark  { display: none  !important; }
.light-theme .logo-for-light { display: block !important; }

.nav-logo-icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: var(--gradient-cmy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 6px rgba(0,0,0,0.55);
}
.nav-logo-text span { color: var(--cyan); }

/* Links desktop */
.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) {
  .nav-links { display: flex; }
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: #94A3B8;
  text-decoration: none;
  text-shadow: 0 1px 6px rgba(0,0,0,0.55);
  transition: color 0.2s;
  /* Touch target mínimo */
  min-height: 44px;
  display: flex;
  align-items: center;
}
.nav-link:hover { color: #fff; }

/* ── Botão hambúrguer ── */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
  border-radius: 8px;
  transition: background 0.2s;
  flex-shrink: 0;
}
.nav-hamburger:hover { background: rgba(255,255,255,0.06); }
@media (min-width: 768px) {
  .nav-hamburger { display: none; }
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
/* Estado aberto */
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Drawer mobile ── */
.nav-drawer {
  display: none;
  flex-direction: column;
  gap: 0;
  background:
    linear-gradient(rgba(11,11,15,0.58), rgba(11,11,15,0.58)),
    linear-gradient(135deg, rgba(var(--yellow-rgb),0.55) 0%, rgba(var(--cyan-rgb),0.6) 55%, rgba(var(--magenta-rgb),0.6) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-el);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1);
}
.nav-drawer.is-open {
  max-height: 500px;
}
@media (max-width: 767px) {
  .nav-drawer { display: flex; }
}
.nav-drawer-link {
  font-size: 1rem;
  font-weight: 600;
  color: #94A3B8;
  text-decoration: none;
  text-shadow: 0 1px 6px rgba(0,0,0,0.55);
  padding: 0.875rem var(--container-px);
  border-bottom: 1px solid rgba(43,47,54,0.5);
  min-height: 52px;
  display: flex;
  align-items: center;
  transition: color 0.2s, background 0.2s;
}
.nav-drawer-link:hover {
  color: #fff;
  background: rgba(255,255,255,0.03);
}
.nav-drawer-cta {
  padding: 1rem var(--container-px);
}

/* ══════════════════════════════════════════
   BOTÕES — touch targets corretos
══════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 8px;
  background: var(--gradient-cmy);
  color: #0B0B0F;
  font-family: 'Public Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s ease;
  box-shadow: 0 0 20px rgba(var(--cyan-rgb),0.25);
  white-space: nowrap;
  min-height: 48px;         /* touch target */
  -webkit-tap-highlight-color: transparent;
}
.btn-primary:hover {
  box-shadow: 0 0 40px rgba(var(--magenta-rgb),0.45), 0 0 80px rgba(var(--cyan-rgb),0.25);
  transform: translateY(-2px);
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.5s ease;
}
.btn-primary:hover::before { left: 100%; }

.btn-primary.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.82rem; min-height: 40px; }
.btn-primary.btn-full { width: 100%; padding: 1rem; font-size: 1rem; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 8px;
  background: transparent;
  color: var(--text-primary);
  font-family: 'Public Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid var(--border-el);
  text-decoration: none;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
  min-height: 48px;
  -webkit-tap-highlight-color: transparent;
}
.btn-secondary:hover {
  border-color: rgba(var(--magenta-rgb),0.5);
  background: rgba(var(--magenta-rgb),0.06);
  transform: translateY(-2px);
}
.btn-secondary.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.82rem; min-height: 40px; }

/* Botões empilhados em mobile */
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
@media (max-width: 400px) {
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-group .btn-primary,
  .btn-group .btn-secondary { width: 100%; }
}

/* ══════════════════════════════════════════
   EYEBROW / SECTION LABEL
══════════════════════════════════════════ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.70rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 18px; height: 1px;
  background: var(--cyan);
  flex-shrink: 0;
}
.section-label-center { justify-content: center; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(var(--cyan-rgb),0.08);
  border: 1px solid rgba(var(--cyan-rgb),0.2);
  border-radius: 100px;
  padding: 0.35rem 0.875rem;
  margin-bottom: 1.5rem;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  display: inline-block;
  animation: pulseDot 2s infinite;
  flex-shrink: 0;
}
.hero-badge-text {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@keyframes pulseDot { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero-subtitle {
  font-size: clamp(0.9rem, 2.5vw, 1.2rem);
  line-height: 1.7;
}

.stat-strip {
  margin-top: clamp(2.5rem, 6vw, 4.5rem);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 640px) {
  .stat-strip { grid-template-columns: repeat(4, 1fr); }
}
.stat-strip-item {
  padding: 1.25rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-el);
  border-radius: 10px;
  text-align: center;
}
.stat-strip-label {
  font-size: 0.75rem;
  margin-top: 0.25rem;
  color: var(--text-secondary);
}

/* ══════════════════════════════════════════
   PÁGINAS (SPA em um único HTML)
══════════════════════════════════════════ */
.page-view { display: none; }
.page-view.active { display: block; }

.nav-link.active,
.nav-drawer-link.active {
  color: #fff;
}
.nav-link.active { position: relative; }
.nav-link.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  border-radius: 2px;
  background: var(--cyan);
}

/* ══════════════════════════════════════════
   TRUST BAR — versão estática (sem animação)
══════════════════════════════════════════ */
.trust-static-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 4vw, 2.5rem);
  max-width: 72rem;
  margin-inline: auto;
  padding-inline: var(--container-px);
}
.trust-item-static { opacity: 0.55; }
.trust-item-static:hover { opacity: 1; }

/* ══════════════════════════════════════════
   TRUST BAR / TICKER
══════════════════════════════════════════ */
.trust-ticker-wrap {
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.trust-ticker {
  display: flex;
  gap: clamp(2rem, 6vw, 4rem);
  animation: ticker 28s linear infinite;
  white-space: nowrap;
  will-change: transform;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(0.72rem, 1.5vw, 0.85rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
  opacity: 0.28;
  white-space: nowrap;
  transition: opacity 0.3s ease, color 0.3s ease;
  cursor: default;
}
.trust-item:hover { opacity: 0.8; color: var(--cyan); }
.trust-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--cyan);
  opacity: 0.5;
  flex-shrink: 0;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.trust-eyebrow {
  font-size: 0.70rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  text-align: center;
  margin-bottom: 1.25rem;
}

/* ══════════════════════════════════════════
   CARDS — padding responsivo
══════════════════════════════════════════ */
.premium-card {
  position: relative;
  background: var(--bg-secondary);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: var(--card-p);
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), border-color 0.3s ease;
}
.premium-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 1.5px;
  background: linear-gradient(
    135deg,
    rgba(var(--yellow-rgb), 0.4) 0%,
    rgba(var(--cyan-rgb), 0.4) 50%,
    rgba(var(--magenta-rgb), 0.4) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.premium-card.card-express {
  background: rgba(var(--magenta-rgb), 0.04);
  border-color: rgba(var(--magenta-rgb), 0.15);
}

.service-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: rgba(var(--cyan-rgb), 0.08);
  border: 1px solid rgba(var(--cyan-rgb), 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  margin-bottom: 1.25rem;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
}

.service-icon.express {
  background: rgba(var(--magenta-rgb), 0.12);
  color: var(--magenta);
}

/* ══════════════════════════════════════════
   SERVIÇOS — blocos por área com galeria de itens
══════════════════════════════════════════ */
.service-area + .service-area {
  margin-top: 3.5rem;
  padding-top: 3.5rem;
  border-top: 1px solid var(--border-el);
}
@media (min-width: 768px) {
  .service-area + .service-area { margin-top: 5rem; padding-top: 5rem; }
}
.service-area-title {
  margin-bottom: 0.4rem;
}
.service-area-lead {
  color: var(--text-secondary);
  line-height: 1.55;
  max-width: 44rem;
  margin-bottom: 1.75rem;
}

/* Mini-fotos dos itens reaproveitam .card-photo, mas SEM o "bleed" que ele faz
   dentro do .premium-card. Especificidade dupla (.card-photo.xxx) para vencer a base. */
.card-photo.svc-item-photo {
  width: 100%;
  margin: 0;
  border: 1px solid var(--border-el);
  border-radius: 10px;
  aspect-ratio: 4 / 3;
}

.service-item {
  margin: 0;
  min-width: 0;
}
.service-item .card-photo {
  transition: border-color 0.3s ease;
}
.service-item:hover .card-photo {
  border-color: rgba(var(--cyan-rgb), 0.35);
}
.service-item-name {
  margin-top: 0.6rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}

/* Botão dentro de um bloco de área */
.service-area > .btn-primary,
.service-area > .btn-secondary {
  margin-top: 1.75rem;
}

/* Faixa "Quem confia na Assus" — logos reais de clientes */
.client-logos-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: 72rem;
  margin-inline: auto;
  padding-inline: var(--container-px);
}
.client-logo-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 1.1rem;
  background: #fff;
  border-radius: 8px;
  filter: grayscale(1);
  opacity: 0.75;
  transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}
.client-logo-chip:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-2px);
}
.client-logo-chip img {
  height: 60%;
  width: auto;
  object-fit: contain;
  display: block;
}

.diff-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: rgba(var(--magenta-rgb), 0.08);
  border: 1px solid rgba(var(--magenta-rgb), 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--magenta);
  flex-shrink: 0;
}

.stat-card.stat-card-accent {
  background: rgba(var(--yellow-rgb), 0.04);
  border-color: rgba(var(--yellow-rgb), 0.15);
}

/* ══════════════════════════════════════════
   ESPAÇO PARA FOTOS NOS CARDS
   (sangra até a borda do card; some sozinho
    a "faixa tracejada" assim que a foto real existir)
══════════════════════════════════════════ */
.card-photo {
  position: relative;
  width: calc(100% + var(--card-p) * 2);
  margin: calc(var(--card-p) * -1) calc(var(--card-p) * -1) 1.5rem calc(var(--card-p) * -1);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(var(--cyan-rgb),0.07), rgba(var(--cyan-rgb),0.015));
}
.card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card-photo-placeholder {
  display: none;
  position: absolute;
  inset: 10px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1.5px dashed var(--border-el);
  border-radius: 8px;
  color: var(--text-secondary);
  text-align: center;
  padding: 0.75rem;
}
.card-photo.photo-missing .card-photo-placeholder { display: flex; }
.card-photo-placeholder i { opacity: 0.5; }
.card-photo-placeholder span {
  font-size: 0.68rem;
  font-family: 'Public Sans', monospace;
  opacity: 0.55;
  word-break: break-all;
  line-height: 1.4;
}

/* Foto grande (seção Diferenciais) */
.feature-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border-el);
  background: linear-gradient(135deg, rgba(var(--cyan-rgb),0.07), rgba(var(--cyan-rgb),0.015));
}
.feature-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.feature-photo .card-photo-placeholder { inset: 12px; }

/* ══════════════════════════════════════════
   SIMULATOR PANEL — mobile-first
══════════════════════════════════════════ */
.sim-panel {
  background: var(--bg-secondary);
  border: 1px solid var(--border-el);
  border-radius: 16px;
  padding: clamp(1.25rem, 5vw, 2.5rem);
  position: relative;
  overflow: hidden;
  max-width: 780px;
  margin-inline: auto;
  width: 100%;
}
.sim-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--magenta), transparent);
}

/* Grid interno do sim: 1 col em mobile, 2 em tablet+ */
.sim-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 560px) {
  .sim-grid { grid-template-columns: 1fr 1fr; }
}

.sim-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.select-wrapper { position: relative; }
.select-wrapper::after {
  content: '';
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--text-secondary);
  pointer-events: none;
}
.sim-select {
  width: 100%;
  background: var(--bg-primary);
  border: 1px solid var(--border-el);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  color: var(--text-primary);
  font-family: 'Public Sans', sans-serif;
  font-size: 0.95rem;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.3s ease;
  min-height: 48px;
}
.sim-select:focus { outline: none; border-color: var(--cyan); }

.sim-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;             /* maior em touch */
  background: var(--border-el);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}
.sim-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px; height: 24px; /* maior em touch */
  border-radius: 50%;
  background: var(--gradient-cmy);
  cursor: pointer;
  box-shadow: 0 0 12px rgba(var(--cyan-rgb),0.6);
  transition: box-shadow 0.2s ease;
}
.sim-range::-webkit-slider-thumb:hover { box-shadow: 0 0 24px rgba(var(--magenta-rgb),0.7); }
.sim-range::-moz-range-thumb {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--gradient-cmy);
  border: none;
  cursor: pointer;
}

.sim-qty-btn {
  width: 36px; height: 36px; /* touch-friendly */
  border-radius: 8px;
  background: var(--bg-primary);
  border: 1px solid var(--border-el);
  color: var(--text-primary);
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease;
  flex-shrink: 0;
  line-height: 1;
  -webkit-tap-highlight-color: transparent;
}
.sim-qty-btn:hover { border-color: rgba(var(--cyan-rgb),0.45); }

.sim-qty-input {
  background: var(--bg-primary);
  border: 1px solid var(--border-el);
  border-radius: 8px;
  padding: 0.5rem 0.5rem;
  color: var(--text-primary);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  width: 80px;
  text-align: center;
  transition: border-color 0.3s ease;
  min-height: 44px;
}
.sim-qty-input:focus { outline: none; border-color: var(--cyan); }

.sim-textarea {
  width: 100%;
  background: var(--bg-primary);
  border: 1px solid var(--border-el);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  color: var(--text-primary);
  font-family: 'Public Sans', sans-serif;
  font-size: 0.9rem;
  resize: vertical;
  min-height: 90px;
  transition: border-color 0.3s ease;
  -webkit-appearance: none;
}
.sim-textarea:focus { outline: none; border-color: var(--cyan); }

.sim-price-box {
  background: rgba(var(--cyan-rgb),0.05);
  border: 1px solid rgba(var(--cyan-rgb),0.15);
  border-radius: 10px;
  padding: 1.1rem 1.25rem;
}
.sim-price-value {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  font-weight: 800;
  color: var(--cyan);
  font-variant-numeric: tabular-nums;
}
.sim-range-hint { font-size: 0.70rem; color: var(--text-muted); }
.sim-meta-label { font-size: 0.78rem; margin-bottom: 0.2rem; }
.sim-qty-val    { font-size: 1.05rem; }
.sim-footer-note { font-size: 0.75rem; color: var(--text-muted); }

/* ══════════════════════════════════════════
   STATS GRID (Why Choose Us)
══════════════════════════════════════════ */
.stat-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-el);
  border-radius: 12px;
  padding: clamp(1.25rem, 4vw, 2rem);
  text-align: center;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 0.4rem;
  line-height: 1.5;
}

.diff-desc { font-size: clamp(0.82rem, 2vw, 0.88rem); line-height: 1.7; }

/* ══════════════════════════════════════════
   DEPOIMENTOS
══════════════════════════════════════════ */
.testimonial-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-el);
  border-radius: 12px;
  padding: clamp(1.25rem, 4vw, 2rem);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
@media (hover: hover) {
  .testimonial-card:hover {
    border-color: rgba(var(--cyan-rgb),0.2);
    transform: translateY(-4px);
  }
}
.testimonial-stars { color: #FFB800; letter-spacing: 2px; font-size: 0.82rem; }
.testimonial-name  { font-size: 0.9rem; }
.testimonial-role  { font-size: 0.76rem; }

.avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.avatar-cyan-magenta { background: linear-gradient(135deg, rgb(var(--cyan-rgb)), rgb(var(--magenta-rgb))); }
.avatar-magenta-yellow { background: linear-gradient(135deg, rgb(var(--magenta-rgb)), rgb(var(--yellow-rgb))); }
.avatar-cyan-yellow { background: linear-gradient(135deg, rgb(var(--cyan-rgb)), rgb(var(--yellow-rgb))); }
.avatar-cmy-tri {
  background: linear-gradient(
    135deg,
    rgb(var(--yellow-rgb)) 0%,
    rgb(var(--cyan-rgb)) 50%,
    rgb(var(--magenta-rgb)) 100%
  );
}

/* ══════════════════════════════════════════
   CONTATO / MAPA
══════════════════════════════════════════ */
.contact-chip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.1rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-el);
  border-radius: 10px;
  transition: border-color 0.3s ease, background 0.3s ease;
  text-decoration: none;
  min-height: 60px;
  -webkit-tap-highlight-color: transparent;
}
.contact-chip:hover {
  border-color: rgba(var(--cyan-rgb),0.3);
  background: rgba(var(--cyan-rgb),0.04);
}
.contact-chip-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-chip-icon.cyan {
  background: rgba(var(--cyan-rgb),0.08);
  border: 1px solid rgba(var(--cyan-rgb),0.15);
  color: var(--cyan);
}
.contact-chip-icon.green {
  background: rgba(37,211,102,0.10);
  border: 1px solid rgba(37,211,102,0.20);
}
.contact-chip-sublabel {
  font-size: 0.70rem;
  color: var(--text-secondary);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.contact-chip-value   { font-weight: 600; color: var(--text-primary); font-size: clamp(0.85rem, 2vw, 0.95rem); }
.contact-chip-address { font-size: 0.80rem; color: var(--text-secondary); }

.map-wrapper {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-el);
}
.map-iframe {
  width: 100%;
  height: clamp(220px, 45vw, 360px);
  border: none;
  display: block;
  filter: invert(90%) hue-rotate(180deg) saturate(0.8) brightness(0.85);
}
.map-footer {
  background: var(--bg-secondary);
  border: 1px solid var(--border-el);
  border-top: none;
  border-radius: 0 0 12px 12px;
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.map-footer-link {
  font-size: 0.78rem;
  color: var(--cyan);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: text-decoration 0.2s;
  min-height: 40px;
}
.map-footer-link:hover { text-decoration: underline; }
.map-brand-name { font-size: 0.9rem; }
.map-brand-addr { font-size: 0.78rem; }

/* ══════════════════════════════════════════
   FAQ ACCORDION
══════════════════════════════════════════ */
.accordion-item { border-bottom: 1px solid var(--border-el); }
.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--text-primary);
  text-align: left;
  font-family: 'Public Sans', sans-serif;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  font-weight: 600;
  gap: 1rem;
  transition: color 0.2s;
  min-height: 52px; /* touch-friendly */
  -webkit-tap-highlight-color: transparent;
}
.accordion-trigger:hover { color: var(--cyan); }
.accordion-icon {
  transition: transform 0.35s ease;
  flex-shrink: 0;
  color: var(--cyan);
}
.accordion-item.open .accordion-icon { transform: rotate(45deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1);
}
.accordion-body-inner {
  padding-bottom: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.75;
  font-size: 0.9rem;
}

/* ══════════════════════════════════════════
   RODAPÉ
══════════════════════════════════════════ */
.footer-root {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-el);
  /* Safe area no fundo (home bar) */
  padding-bottom: env(safe-area-inset-bottom);
}
.footer-logo-text {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}
.footer-logo-text span { color: var(--cyan); }
.footer-col-title {
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.footer-link {
  font-size: 0.86rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
  min-height: 36px;
  display: flex;
  align-items: center;
}
.footer-link:hover    { color: var(--text-primary); }
.footer-link-wa:hover { color: #25D366; }
.footer-divider { border: none; border-top: 1px solid var(--border-el); }
.footer-copy      { font-size: 0.76rem; color: var(--text-muted); }
.footer-legal-link {
  font-size: 0.76rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal-link:hover { color: var(--text-secondary); }
.footer-brand-desc { font-size: 0.83rem; line-height: 1.65; }
.footer-item-static { cursor: default; }

.social-icon {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: var(--bg-primary);
  border: 1px solid var(--border-el);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.social-icon:hover { border-color: rgba(var(--cyan-rgb),0.4); color: var(--cyan); }

/* Rodapé bottom bar */
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 480px) {
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}

/* ══════════════════════════════════════════
   WHATSAPP FLUTUANTE — afasta da home bar
══════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: calc(1.5rem + env(safe-area-inset-bottom));
  right: 1.5rem;
  z-index: 999;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  animation: waPulse 2.5s infinite;
  -webkit-tap-highlight-color: transparent;
}
@media (min-width: 768px) {
  .wa-float { width: 58px; height: 58px; bottom: calc(2rem + env(safe-area-inset-bottom)); right: 2rem; }
}
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 24px rgba(37,211,102,0.45), 0 0 0 0   rgba(37,211,102,0.5); }
  50%     { box-shadow: 0 4px 24px rgba(37,211,102,0.45), 0 0 0 12px rgba(37,211,102,0); }
}

/* ══════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.05s; }
.reveal-d2 { transition-delay: 0.10s; }
.reveal-d3 { transition-delay: 0.15s; }
.reveal-d4 { transition-delay: 0.20s; }
.reveal-d5 { transition-delay: 0.25s; }

/* ══════════════════════════════════════════
   UTILITÁRIOS DE TEXTO (mobile-first)
══════════════════════════════════════════ */
.text-center-mobile { text-align: center; }
@media (min-width: 768px) { .text-center-mobile { text-align: left; } }

/* Limita largura de texto longo */
.prose-limit { max-width: 58ch; }

/* ══════════════════════════════════════════
   ESPAÇAMENTOS ESPECÍFICOS POR BREAKPOINT
══════════════════════════════════════════ */
@media (max-width: 480px) {
  /* Remove padding excessivo em elementos internos no mobile */
  .sim-panel     { border-radius: 12px; }
  .premium-card  { border-radius: 10px; }
  .stat-card     { border-radius: 10px; }

  /* Textos de suporte menores */
  .card-desc, .diff-desc, .accordion-body-inner { font-size: 0.88rem; }

  /* Stat strip: valor menor para caber em 2 colunas */
  .stat-value { font-size: 1.75rem; }
}

/* ══════════════════════════════════════════
   REDUCED MOTION
══════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .glow-orb,
  .trust-ticker,
  .wa-float        { animation: none !important; }
  .reveal          { transition: none !important; opacity: 1 !important; transform: none !important; }
  .btn-primary,
  .btn-secondary,
  .premium-card    { transition: none !important; }
}

/* ══════════════════════════════════════════
   DARK MODE — já é dark por padrão,
   mas mantém suporte explícito
══════════════════════════════════════════ */
@media (prefers-color-scheme: light) {
  /* Sem override: mantém dark em qualquer OS */
  :root { color-scheme: dark; }
}

/* ══════════════════════════════════════════
   TEMA CLARO — PREMIUM PRINT EDITION
══════════════════════════════════════════ */
.light-theme {
  /* Fundo tom "papel" — mais suave que um branco clínico, menos cansativo para os olhos */
  --bg-primary:     #F6F4F0;
  --bg-secondary:   #FFFEFC;
  --border-el:      #CBD5E1; /* Mais presente que um cinza quase invisível — dá contorno real aos cards */
  --text-primary:   #0F172A; /* Chumbo quase preto para máxima leitura */
  --text-secondary: #334155; /* Cinza escuro ergonômico para parágrafos */
  --text-muted:     #475569; /* Levemente mais escuro que no dark mode p/ não lavar sobre fundo claro */

  /* Os canais CMY (--cyan-rgb/--magenta-rgb/--yellow-rgb) herdam de :root sem alteração */
}

/* ── Correções de Contraste e Legibilidade no Tema Claro ── */

/* Sem degradê no tema claro — cor sólida em ciano, a pedido do cliente */
.light-theme .gradient-text {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: unset;
  color: var(--cyan);
  text-shadow: 0 2px 14px rgba(0,0,0,0.3);
}

/* Sem degradê no texto — cor sólida em magenta */
.light-theme .stat-value,
.light-theme .stat-value-sm {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: unset;
  color: var(--magenta);
}

/* Botão principal: sem degradê, ciano sólido */
.light-theme .btn-primary {
  background: var(--cyan);
}

/* Corrige o badge do topo (removendo o fundo ciano lavado) */
.light-theme .hero-badge {
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
}
.light-theme .hero-badge-text {
  color: var(--cyan);
}

/* Alinha o subtítulo e parágrafos para a cor correta */
.light-theme p,
.light-theme .hero-subtitle,
.light-theme .stat-strip-label {
  color: var(--text-secondary) !important;
}

/* Título principal do Hero: nunca pode ficar branco sobre o fundo claro */
.light-theme .heading-xl {
  color: #1d1d1f;
}

/* Subtítulo do Hero: cinza-escuro sólido para não sumir sobre a foto/rolos da máquina */
.light-theme .hero-subtitle {
  color: #1e293b !important;
}

/* Links do menu superior (e do drawer mobile, que reaproveita a mesma classe) */
.light-theme .nav-drawer-link,
.light-theme .nav-drawer-link.active {
  color: #1d1d1f;
}
.light-theme .nav-drawer-link:hover {
  color: var(--cyan);
  background: rgba(0,0,0,0.05);
}

/* Trata a grade de fundo para ficar quase imperceptível */
.light-theme .hero-grid-bg {
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
}

/* Retícula: um pouco mais discreta sobre o fundo claro */
.light-theme .hero-halftone { opacity: 0.35; }

/* Esferas de fundo com presença de cor, porém suaves — sem cansar a vista */
.light-theme .glow-orb {
  mix-blend-mode: multiply;
  opacity: 0.3;
  filter: blur(95px);
}
.light-theme .glow-orb-hero-a { background: radial-gradient(circle, rgba(var(--cyan-rgb), 0.16) 0%, transparent 70%); }
.light-theme .glow-orb-hero-b { background: radial-gradient(circle, rgba(var(--magenta-rgb), 0.13) 0%, transparent 70%); }

/* ══════════════════════════════════════════
   TEMA CLARO — VIDA E COR
   (evita o efeito "página em branco"; usa as
   3 cores do logo para dar identidade gráfica)
══════════════════════════════════════════ */

/* Faixa de segmentos: de linha cinza neutra para uma tarja com identidade CMY */
.light-theme section:has(> .trust-eyebrow) {
  background: linear-gradient(
    90deg,
    rgba(var(--yellow-rgb), 0.06),
    rgba(var(--cyan-rgb), 0.05) 50%,
    rgba(var(--magenta-rgb), 0.045)
  );
}
.light-theme .trust-item-static { opacity: 0.95; }
.light-theme .trust-static-wrap .trust-item-static:nth-child(3n+1) { color: var(--cyan); }
.light-theme .trust-static-wrap .trust-item-static:nth-child(3n+1) .trust-dot { background: var(--cyan); opacity: 1; }
.light-theme .trust-static-wrap .trust-item-static:nth-child(3n+2) { color: var(--magenta); }
.light-theme .trust-static-wrap .trust-item-static:nth-child(3n+2) .trust-dot { background: var(--magenta); opacity: 1; }
.light-theme .trust-static-wrap .trust-item-static:nth-child(3n)   { color: var(--yellow); }
.light-theme .trust-static-wrap .trust-item-static:nth-child(3n)   .trust-dot { background: var(--yellow); opacity: 1; }

/* Cards: contorno visível + leve lavagem cromática alternada (ciano / magenta / amarelo) */
.light-theme .premium-card {
  border-color: var(--border-el);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.light-theme .premium-card:nth-of-type(3n+1) {
  background: linear-gradient(165deg, rgba(var(--cyan-rgb), 0.05), #FFFEFC 60%);
  border-color: rgba(var(--cyan-rgb), 0.16);
}
.light-theme .premium-card:nth-of-type(3n+2) {
  background: linear-gradient(165deg, rgba(var(--magenta-rgb), 0.045), #FFFEFC 60%);
  border-color: rgba(var(--magenta-rgb), 0.15);
}
.light-theme .premium-card:nth-of-type(3n) {
  background: linear-gradient(165deg, rgba(var(--yellow-rgb), 0.06), #FFFEFC 60%);
  border-color: rgba(180, 140, 0, 0.16);
}
.light-theme .premium-card.card-express {
  background: linear-gradient(165deg, rgba(var(--magenta-rgb), 0.06), #FFFEFC 60%);
  border-color: rgba(var(--magenta-rgb), 0.18);
}

.light-theme .service-icon { background: rgba(var(--cyan-rgb), 0.10); border-color: rgba(var(--cyan-rgb), 0.22); }
.light-theme .service-icon.express { background: rgba(var(--magenta-rgb), 0.12); }
.light-theme .diff-icon { background: rgba(var(--magenta-rgb), 0.10); border-color: rgba(var(--magenta-rgb), 0.22); }

/* Stats e depoimentos: bordas com identidade em vez de cinza neutro */
.light-theme .stat-card { border-color: rgba(var(--cyan-rgb), 0.15); }
.light-theme .stat-card.stat-card-accent {
  background: rgba(var(--yellow-rgb), 0.07);
  border-color: rgba(180, 140, 0, 0.2);
}
.light-theme .testimonial-card { border-color: rgba(var(--magenta-rgb), 0.14); }
.light-theme .contact-chip { border-color: rgba(var(--cyan-rgb), 0.15); }
.light-theme .sim-panel { border-color: rgba(var(--cyan-rgb), 0.15); }
.light-theme .card-photo,
.light-theme .feature-photo {
  background: linear-gradient(135deg, rgba(var(--cyan-rgb), 0.09), rgba(var(--magenta-rgb), 0.04));
}

/* Header: propositalmente mais escuro que o resto da página — degradê nas 3 cores
   primárias do logo (ciano → magenta → amarelo) escurecidas com um véu preto,
   mantendo o mesmo texto claro do tema escuro (não precisa de override de cor) */
.light-theme .nav-root {
  background:
    linear-gradient(rgba(11,11,15,0.1), rgba(11,11,15,0.1)),
    linear-gradient(135deg, rgba(var(--yellow-rgb),0.25) 0%, rgba(var(--cyan-rgb),0.28) 55%, rgba(var(--magenta-rgb),0.28) 100%);
  border-bottom: 1px solid rgba(0,0,0,0.2);
}
.light-theme .nav-drawer {
  background:
    linear-gradient(rgba(11,11,15,0.13), rgba(11,11,15,0.13)),
    linear-gradient(135deg, rgba(var(--yellow-rgb),0.28) 0%, rgba(var(--cyan-rgb),0.3) 55%, rgba(var(--magenta-rgb),0.3) 100%);
  border-bottom: 1px solid rgba(0,0,0,0.2);
}