/* ============================================================
   DS Soluções em TI — Custom Design System
   Complementa o Tailwind compilado. Fontes: Plus Jakarta Sans
   ============================================================ */

/* ── VARIÁVEIS ── */
:root {
  --ds-navy:      #020b18;
  --ds-navy-mid:  #0a1628;
  --ds-navy-light:#0f2040;
  --ds-blue:      #0ea5e9;
  --ds-blue-dark: #0284c7;
  --ds-cyan:      #38bdf8;
  --ds-indigo:    #818cf8;
  --ds-green:     #22c55e;
  --ds-slate:     #64748b;
  --ds-slate-mid: #475569;
  --ds-border:    rgba(255,255,255,0.07);
  --ds-surface:   rgba(255,255,255,0.04);
  --ds-radius:    16px;
  --ds-easing:    cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── TIPOGRAFIA GLOBAL ── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', 'Open Sans', system-ui, sans-serif;
  letter-spacing: -0.02em;
}
body {
  font-family: 'Plus Jakarta Sans', 'Open Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* ── TRUST BAR ── */
.ds-trust-bar {
  background: #0f172a;
  border-bottom: 1px solid var(--ds-border);
  padding: 7px 0;
  /* Fixo no TOPO, acima do nav */
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
}
.ds-trust-bar-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: nowrap; padding: 0 24px;
  overflow: hidden;
}
.ds-trust-item {
  display: flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 500;
  color: #64748b; letter-spacing: 0.02em;
  white-space: nowrap; flex-shrink: 0;
}
.ds-trust-item .ds-check { color: #22c55e; font-size: 12px; }
.ds-trust-sep { width: 1px; height: 12px; background: rgba(255,255,255,0.1); flex-shrink: 0; }

/* No mobile: oculta a trust bar (espaço limitado) */
@media (max-width: 768px) {
  .ds-trust-bar { display: none; }
  #ds-nav { top: 0 !important; }
  .ds-hero { padding-top: 80px !important; }
}

/* ── NAV REDESIGN ── */
#ds-nav {
  /* Fica ABAIXO da trust bar (~36px de altura) */
  top: 36px;
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, padding 0.3s, top 0.3s;
}
#ds-nav.ds-nav-solid {
  background: rgba(2,11,24,0.97) !important;
  border-bottom-color: var(--ds-border);
  backdrop-filter: blur(16px);
  top: 0; /* ao rolar, sobe para o topo */
}
.ds-nav-logo {
  display: flex; align-items: center;
}
.ds-nav-logo img {
  height: 56px; width: auto; object-fit: contain; max-width: 220px;
}

/* Mobile nav ajustes */
@media (max-width: 768px) {
  .ds-nav-logo img { height: 44px; max-width: 160px; }
  #ds-nav { padding: 10px 0; }
}

/* ── BOTÃO ABRIR CHAMADO ── */
.ds-btn-chamado {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.08);
  color: #e2e8f0;
  border: 1.5px solid rgba(255,255,255,0.18);
  padding: 9px 16px; border-radius: 10px;
  font-size: 13px; font-weight: 600;
  text-decoration: none; white-space: nowrap;
  min-height: 44px;
  transition: all 0.2s ease;
  backdrop-filter: blur(8px);
}
.ds-btn-chamado:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
  color: #fff;
  transform: translateY(-1px);
}
.ds-btn-chamado-icon {
  width: 16px; height: 16px; flex-shrink: 0;
}

/* ── HERO REDESIGN ── */
.ds-hero {
  background:
    radial-gradient(ellipse 700px 500px at 75% 50%, rgba(14,165,233,0.08) 0%, transparent 65%),
    radial-gradient(ellipse 500px 350px at 15% 80%, rgba(6,182,212,0.05) 0%, transparent 55%),
    linear-gradient(160deg, var(--ds-navy) 0%, var(--ds-navy-mid) 35%, var(--ds-navy-light) 65%, var(--ds-navy) 100%);
  position: relative; overflow: hidden;
  /* 36px trust bar + ~84px nav = ~120px total de header */
  padding: 140px 0 80px;
  min-height: 600px;
  display: flex; align-items: center;
}

.ds-hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(14,165,233,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,165,233,0.04) 1px, transparent 1px);
  background-size: 52px 52px;
}

.ds-hero-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 40px;
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 400px;
  gap: 56px; align-items: center;
}

/* Hero left */
.ds-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(14,165,233,0.1);
  border: 1px solid rgba(14,165,233,0.25);
  color: #7dd3fc;
  border-radius: 100px; padding: 6px 16px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.03em;
  margin-bottom: 26px;
}
.ds-hero-eyebrow .ds-live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px rgba(34,197,94,0.8);
  animation: ds-pulse-dot 2s infinite;
  flex-shrink: 0;
}

.ds-hero h1 {
  font-size: 54px; font-weight: 800;
  color: #fff; line-height: 1.06;
  letter-spacing: -0.03em; margin-bottom: 20px;
}
.ds-hero h1 .ds-gradient {
  background: linear-gradient(90deg, #38bdf8 0%, #818cf8 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; display: block;
}
.ds-hero-desc {
  font-size: 17px; color: #94a3b8;
  line-height: 1.68; margin-bottom: 36px;
  max-width: 490px; font-weight: 400;
}
.ds-hero-btns {
  display: flex; gap: 12px; align-items: center;
  flex-wrap: wrap; margin-bottom: 40px;
}
.ds-btn-primary {
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  color: #fff; border: none;
  padding: 15px 28px; border-radius: 12px;
  font-size: 15px; font-weight: 700; cursor: pointer;
  box-shadow: 0 8px 28px rgba(14,165,233,0.4);
  transition: all 0.2s var(--ds-easing);
  white-space: nowrap; display: inline-flex; align-items: center;
  text-decoration: none; min-height: 52px;
  font-family: inherit;
}
.ds-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(14,165,233,0.5); }
.ds-btn-secondary {
  background: rgba(255,255,255,0.07);
  color: #cbd5e1; border: 1.5px solid rgba(255,255,255,0.14);
  padding: 14px 26px; border-radius: 12px;
  font-size: 15px; font-weight: 600; cursor: pointer;
  backdrop-filter: blur(10px);
  transition: all 0.2s;
  white-space: nowrap; display: inline-flex; align-items: center;
  text-decoration: none; min-height: 52px;
  font-family: inherit;
}
.ds-btn-secondary:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.22); }

.ds-hero-trust {
  display: flex; gap: 20px; flex-wrap: wrap; align-items: center;
}
.ds-hero-trust-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 12.5px; font-weight: 500; color: #475569;
}
.ds-hero-trust-item .ds-check { color: #22c55e; font-size: 14px; }

/* ── NOC VISUAL (hero right) ── */
.ds-noc-panel {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(14,165,233,0.15);
  border-radius: var(--ds-radius); padding: 24px;
  backdrop-filter: blur(20px); position: relative; overflow: hidden;
}
.ds-noc-panel::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(14,165,233,0.5), transparent);
}
.ds-noc-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
}
.ds-noc-title { font-size: 10.5px; font-weight: 700; color: #475569; text-transform: uppercase; letter-spacing: 0.1em; }
.ds-noc-status {
  display: flex; align-items: center; gap: 5px;
  font-size: 11px; color: #22c55e; font-weight: 600;
}
.ds-noc-status .dot {
  width: 6px; height: 6px; border-radius: 50%; background: #22c55e;
  box-shadow: 0 0 5px rgba(34,197,94,0.7);
  animation: ds-pulse-dot 1.8s infinite;
}

.ds-noc-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 18px; }
.ds-noc-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px; padding: 13px 14px;
}
.ds-noc-stat .label { font-size: 9.5px; color: #475569; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; margin-bottom: 5px; }
.ds-noc-stat .value { font-size: 22px; font-weight: 800; line-height: 1; }
.ds-noc-stat .value.green { color: #22c55e; }
.ds-noc-stat .value.blue  { color: #38bdf8; }
.ds-noc-stat .value.white { color: #f1f5f9; }
.ds-noc-stat .sub { font-size: 9.5px; color: #334155; margin-top: 3px; }

.ds-noc-bars-label { font-size: 9.5px; color: #475569; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; margin-bottom: 10px; }
.ds-noc-bars { display: flex; flex-direction: column; gap: 8px; }
.ds-noc-bar-row { display: flex; align-items: center; gap: 10px; }
.ds-noc-bar-name { font-size: 11px; color: #94a3b8; width: 72px; flex-shrink: 0; }
.ds-noc-bar-track { flex: 1; height: 5px; background: rgba(255,255,255,0.06); border-radius: 3px; overflow: hidden; }
.ds-noc-bar-fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg, #0ea5e9, #38bdf8); }
.ds-noc-bar-fill.purple { background: linear-gradient(90deg, #818cf8, #a5b4fc); }
.ds-noc-bar-pct { font-size: 10.5px; color: #475569; width: 30px; text-align: right; flex-shrink: 0; }

.ds-noc-footer {
  margin-top: 16px; padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: space-between;
}
.ds-noc-ok { display: flex; align-items: center; gap: 5px; font-size: 11px; color: #22c55e; font-weight: 600; }
.ds-noc-time { font-size: 10px; color: #334155; }

/* ── STATS BAR ── */
.ds-stats-bar {
  background: #0a0f1e;
  border-top: 1px solid var(--ds-border);
  border-bottom: 1px solid var(--ds-border);
}
.ds-stats-bar-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.ds-stat-item {
  text-align: center; padding: 30px 20px;
  border-right: 1px solid var(--ds-border);
}
.ds-stat-item:last-child { border-right: none; }
.ds-stat-item .num {
  font-size: 38px; font-weight: 800; color: #38bdf8;
  letter-spacing: -0.03em; line-height: 1; margin-bottom: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.ds-stat-item .lbl { font-size: 11.5px; color: #475569; font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; }

/* ── CLIENTS STRIP ── */
.ds-clients-strip {
  background: #f8fafc;
  padding: 28px 40px;
  border-bottom: 1px solid #e2e8f0;
}
.ds-clients-label {
  text-align: center; font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.13em; text-transform: uppercase; color: #94a3b8; margin-bottom: 18px;
}
.ds-clients-track { overflow: hidden; }
.ds-clients-inner {
  display: flex; gap: 48px; align-items: center; width: max-content;
  animation: ds-scroll 40s linear infinite;
}
.ds-clients-inner:hover { animation-play-state: paused; }

/* modo texto (fallback) */
.ds-client-name {
  font-size: 14px; font-weight: 700; color: #cbd5e1; white-space: nowrap; cursor: default;
  transition: color 0.2s;
}
.ds-client-name:hover { color: #0ea5e9; }

/* modo logo (imagens) */
.ds-client-item {
  display: flex; align-items: center; flex-shrink: 0;
  text-decoration: none; cursor: default;
}
a.ds-client-item { cursor: pointer; }
.ds-client-logo {
  height: 36px; width: auto; max-width: 140px;
  object-fit: contain;
  /* grayscale + baixa opacidade: padrão de logo strips profissionais */
  filter: grayscale(100%) opacity(0.45);
  transition: filter 0.3s ease;
}
.ds-clients-inner:hover .ds-client-logo { filter: grayscale(100%) opacity(0.35); }
.ds-client-item:hover .ds-client-logo  { filter: grayscale(0%) opacity(1); }

/* logos mode: padding vertical maior */
.ds-clients-strip:has(.ds-logos-mode) { padding: 36px 40px; }
.ds-logos-mode { gap: 56px; }

/* ── SERVICES ── */
.ds-services { padding: 80px 0; background: #fff; }
.ds-services-inner { max-width: 1100px; margin: 0 auto; padding: 0 40px; }
.ds-section-label { font-size: 11px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: #0ea5e9; margin-bottom: 12px; }
.ds-section-title { font-size: 40px; font-weight: 800; color: #0f172a; line-height: 1.12; letter-spacing: -0.02em; margin-bottom: 14px; }
.ds-section-desc { font-size: 16px; color: #64748b; line-height: 1.68; max-width: 520px; margin-bottom: 48px; font-weight: 400; }

.ds-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ds-svc-card {
  background: #fff; border: 1.5px solid #e2e8f0; border-radius: var(--ds-radius);
  padding: 30px 26px; position: relative; overflow: hidden;
  cursor: pointer; transition: all 0.25s var(--ds-easing);
}
.ds-svc-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, #0ea5e9, #38bdf8);
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ds-easing);
}
.ds-svc-card:hover { border-color: rgba(14,165,233,0.3); box-shadow: 0 12px 36px rgba(14,165,233,0.09); transform: translateY(-3px); }
.ds-svc-card:hover::after { transform: scaleX(1); }

.ds-svc-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(14,165,233,0.12), rgba(56,189,248,0.05));
  border: 1px solid rgba(14,165,233,0.15);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; transition: all 0.25s;
}
.ds-svc-card:hover .ds-svc-icon { background: linear-gradient(135deg, #0ea5e9, #0284c7); border-color: transparent; }
.ds-svc-icon svg { color: #0ea5e9; transition: color 0.25s; width: 22px; height: 22px; }
.ds-svc-card:hover .ds-svc-icon svg { color: #fff; }

.ds-svc-title { font-size: 17px; font-weight: 700; color: #0f172a; margin-bottom: 9px; line-height: 1.3; }
.ds-svc-desc  { font-size: 13.5px; color: #64748b; line-height: 1.65; margin-bottom: 16px; }
.ds-svc-tags  { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 18px; }
.ds-svc-tag   { font-size: 10.5px; background: #f1f5f9; color: #475569; padding: 3px 10px; border-radius: 100px; font-weight: 600; }
.ds-svc-link  {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 12.5px; font-weight: 700; color: #0ea5e9;
  transition: gap 0.2s; text-decoration: none;
}
.ds-svc-link svg { width: 13px; height: 13px; transition: transform 0.2s; }
.ds-svc-card:hover .ds-svc-link { gap: 8px; }
.ds-svc-card:hover .ds-svc-link svg { transform: translateX(2px); }

/* ── PROCESS ── (mantém o existente, apenas ajusta tipografia) */
.ds-process { padding: 80px 0; background: #f8fafc; }
.ds-process-inner { max-width: 1100px; margin: 0 auto; padding: 0 40px; }

/* ── PARTNERS ── */
.ds-partners { background: #fff; padding: 44px 40px; border-top: 1px solid #e2e8f0; border-bottom: 1px solid #e2e8f0; }
.ds-partners-label { text-align: center; font-size: 10.5px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: #94a3b8; margin-bottom: 24px; }
.ds-partners-logos { display: flex; gap: 40px; align-items: center; justify-content: center; flex-wrap: wrap; }
.ds-partner { font-size: 14px; font-weight: 800; color: #cbd5e1; cursor: default; letter-spacing: -0.01em; transition: color 0.2s; }
.ds-partner:hover { color: #0ea5e9; }

/* ── CTA SECTION ── */
.ds-cta {
  background:
    radial-gradient(ellipse 600px 300px at 50% 50%, rgba(14,165,233,0.1) 0%, transparent 65%),
    linear-gradient(135deg, #020b18 0%, #0f2040 100%);
  padding: 80px 40px; text-align: center; position: relative; overflow: hidden;
}
.ds-cta-inner { max-width: 640px; margin: 0 auto; position: relative; z-index: 1; }
.ds-cta-label { font-size: 11px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: #0ea5e9; margin-bottom: 16px; }
.ds-cta-title { font-size: 40px; font-weight: 800; color: #fff; line-height: 1.12; letter-spacing: -0.02em; margin-bottom: 16px; }
.ds-cta-desc { font-size: 16px; color: #64748b; line-height: 1.68; margin-bottom: 36px; }
.ds-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── CONTACT FORM ── */
.ds-contact { padding: 80px 0; background: #fff; }
.ds-contact-inner { max-width: 1100px; margin: 0 auto; padding: 0 40px; }
.ds-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.ds-contact-title { font-size: 34px; font-weight: 800; color: #0f172a; letter-spacing: -0.02em; margin-bottom: 14px; }
.ds-contact-desc { font-size: 16px; color: #64748b; line-height: 1.65; margin-bottom: 32px; }
.ds-contact-item { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.ds-contact-icon { width: 44px; height: 44px; min-width: 44px; background: rgba(14,165,233,0.08); border: 1px solid rgba(14,165,233,0.15); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.ds-contact-icon svg { width: 20px; height: 20px; color: #0ea5e9; }
.ds-contact-meta .cat { font-size: 10.5px; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.ds-contact-meta a, .ds-contact-meta span { font-size: 14px; font-weight: 700; color: #0f172a; display: block; text-decoration: none; transition: color 0.2s; }
.ds-contact-meta a:hover { color: #0ea5e9; }

.ds-form-card { background: #f8fafc; border: 1.5px solid #e2e8f0; border-radius: var(--ds-radius); padding: 32px; }
.ds-form-title { font-size: 18px; font-weight: 700; color: #0f172a; margin-bottom: 4px; }
.ds-form-sub { font-size: 13px; color: #94a3b8; margin-bottom: 24px; }

/* ── FAQ ── */
.ds-faq { padding: 80px 0; background: #f8fafc; }
.ds-faq-inner { max-width: 800px; margin: 0 auto; padding: 0 40px; }
.ds-faq-header { text-align: center; margin-bottom: 48px; }
.ds-faq-title { font-size: 36px; font-weight: 800; color: #0f172a; line-height: 1.15; letter-spacing: -0.02em; margin: 8px 0 12px; }
.ds-faq-desc { font-size: 16px; color: #64748b; line-height: 1.65; }

.ds-faq-list { display: flex; flex-direction: column; gap: 10px; }
.ds-faq-item { background: #fff; border: 1.5px solid #e2e8f0; border-radius: 14px; overflow: hidden; transition: border-color 0.2s; }
.ds-faq-item:has(.ds-faq-trigger[aria-expanded="true"]) { border-color: rgba(14,165,233,0.35); }

.ds-faq-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 20px 24px; background: none; border: none;
  font-family: inherit; font-size: 15.5px; font-weight: 600; color: #0f172a;
  text-align: left; cursor: pointer; transition: color 0.2s;
  min-height: 64px;
}
.ds-faq-trigger:hover { color: #0ea5e9; }
.ds-faq-trigger[aria-expanded="true"] { color: #0ea5e9; }

.ds-faq-icon {
  width: 20px; height: 20px; flex-shrink: 0; color: #94a3b8;
  transition: transform 0.25s ease, color 0.2s;
}
.ds-faq-trigger[aria-expanded="true"] .ds-faq-icon { transform: rotate(180deg); color: #0ea5e9; }

.ds-faq-answer { padding: 0 24px 20px; }
.ds-faq-answer p { font-size: 14.5px; color: #475569; line-height: 1.75; border-top: 1px solid #f1f5f9; padding-top: 16px; margin: 0; }

.ds-faq-footer { text-align: center; margin-top: 36px; font-size: 14px; color: #94a3b8; }
.ds-faq-footer a { color: #0ea5e9; font-weight: 600; text-decoration: none; }
.ds-faq-footer a:hover { text-decoration: underline; }

/* ── PARTNERS logos ── */
.ds-partner-logo {
  display: inline-flex; align-items: center; justify-content: center;
  height: 40px; flex-shrink: 0;
  filter: grayscale(100%) opacity(0.38);
  transition: filter 0.3s ease;
  cursor: default;
}
.ds-partner-logo:hover { filter: grayscale(0%) opacity(1); }
.ds-partner-logo img { height: 40px; width: auto; max-width: 140px; object-fit: contain; }

/* ── FOOTER ── */
.ds-footer { background: #020b18; color: #475569; padding: 60px 0 32px; }
.ds-footer-inner { max-width: 1100px; margin: 0 auto; padding: 0 40px; }
.ds-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.ds-footer-brand .name { font-size: 16px; font-weight: 800; color: #f1f5f9; margin-bottom: 8px; }
.ds-footer-brand p { font-size: 13px; line-height: 1.65; margin-bottom: 20px; }
.ds-footer-socials { display: flex; gap: 10px; }
.ds-footer-social { width: 36px; height: 36px; min-width: 36px; background: rgba(255,255,255,0.05); border-radius: 8px; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.ds-footer-social:hover { background: #0ea5e9; }
.ds-footer-social svg { width: 15px; height: 15px; color: #64748b; transition: color 0.2s; }
.ds-footer-social:hover svg { color: #fff; }
.ds-footer-col h4 { font-size: 10.5px; font-weight: 700; color: #f1f5f9; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.ds-footer-col a { display: block; font-size: 13px; color: #475569; text-decoration: none; margin-bottom: 10px; transition: color 0.2s; }
.ds-footer-col a:hover { color: #e2e8f0; }
.ds-footer-bottom { border-top: 1px solid var(--ds-border); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: gap; gap: 12px; }
.ds-footer-bottom .copy { font-size: 12px; color: #334155; }
.ds-footer-bottom-links { display: flex; gap: 20px; }
.ds-footer-bottom-links a { font-size: 12px; color: #334155; text-decoration: none; transition: color 0.2s; }
.ds-footer-bottom-links a:hover { color: #e2e8f0; }

/* ── MODAL ── */
.ds-modal-header { background: linear-gradient(135deg, var(--ds-navy) 0%, #0f2040 100%); border-radius: 16px 16px 0 0; padding: 32px; position: relative; }
.ds-modal-close { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; background: rgba(255,255,255,0.1); border: none; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #fff; cursor: pointer; transition: background 0.2s; }
.ds-modal-close:hover { background: rgba(255,255,255,0.2); }
.ds-modal-icon { width: 52px; height: 52px; background: rgba(14,165,233,0.15); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.ds-modal-title { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 10px; letter-spacing: -0.02em; }
.ds-modal-desc { font-size: 14px; color: #94a3b8; line-height: 1.65; }
.ds-modal-body { padding: 28px 32px 32px; }
.ds-modal-section-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #94a3b8; margin-bottom: 16px; }
.ds-modal-bullets { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 12px; }
.ds-modal-bullet { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: #374151; line-height: 1.6; }
.ds-modal-bullet-icon { width: 20px; height: 20px; background: rgba(14,165,233,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.ds-modal-bullet-icon svg { width: 11px; height: 11px; color: #0ea5e9; }
.ds-modal-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.ds-modal-tag { font-size: 11px; background: rgba(14,165,233,0.08); color: #0ea5e9; padding: 4px 12px; border-radius: 100px; font-weight: 600; border: 1px solid rgba(14,165,233,0.15); }
.ds-modal-cta { display: block; width: 100%; background: linear-gradient(135deg, #0ea5e9, #0284c7); color: #fff; border: none; border-radius: 12px; padding: 16px; text-align: center; font-size: 15px; font-weight: 700; cursor: pointer; font-family: inherit; text-decoration: none; transition: all 0.2s; box-shadow: 0 6px 24px rgba(14,165,233,0.35); }
.ds-modal-cta:hover { transform: translateY(-1px); box-shadow: 0 10px 32px rgba(14,165,233,0.45); }

/* ── ANIMAÇÕES ── */
@keyframes ds-pulse-dot {
  0%,100% { opacity: 1; box-shadow: 0 0 6px rgba(34,197,94,0.8); }
  50%      { opacity: 0.5; box-shadow: 0 0 2px rgba(34,197,94,0.2); }
}
@keyframes ds-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── FORM ROWS (responsive 2-col → 1-col) ── */
.ds-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ── RESPONSIVO ── */
@media (max-width: 900px) {
  .ds-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .ds-noc-panel  { display: none; }
  .ds-hero h1    { font-size: 38px; }
  .ds-hero-desc  { font-size: 15px; }
  .ds-stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .ds-stat-item  { border-right: 1px solid var(--ds-border); border-bottom: 1px solid var(--ds-border); }
  .ds-services-grid { grid-template-columns: repeat(2, 1fr); }
  .ds-footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .ds-contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .ds-section-title { font-size: 30px; }
  .ds-cta-title { font-size: 30px; }
  .ds-faq-inner { padding: 0 24px; }
  .ds-process-inner { padding: 0 24px; }
}

@media (max-width: 640px) {
  /* Nav */
  #ds-nav { top: 0 !important; }
  .ds-trust-bar { display: none; }
  .ds-hero { padding-top: 80px !important; padding-bottom: 48px; }

  /* Hero */
  .ds-hero-inner { padding: 0 20px; gap: 32px; }
  .ds-hero h1 { font-size: 30px; }
  .ds-hero-desc { font-size: 15px; max-width: 100%; }
  .ds-hero-btns { flex-direction: column; gap: 10px; }
  .ds-hero-btns .ds-btn-primary,
  .ds-hero-btns .ds-btn-secondary { width: 100%; justify-content: center; }
  .ds-hero-trust { gap: 12px; }

  /* Stats */
  .ds-stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .ds-stat-item { padding: 20px 12px; }
  .ds-stat-item .num { font-size: 28px; }

  /* Clients / Partners */
  .ds-clients-strip, .ds-partners { padding: 24px 16px; }

  /* Services */
  .ds-services { padding: 48px 0; }
  .ds-services-inner { padding: 0 20px; }
  .ds-services-grid { grid-template-columns: 1fr; }

  /* Process */
  .ds-process-inner { padding: 0 20px; }

  /* CTA */
  .ds-cta { padding: 48px 20px; }
  .ds-cta-title { font-size: 26px; }
  .ds-cta-btns { flex-direction: column; align-items: center; }
  .ds-cta-btns .ds-btn-primary,
  .ds-cta-btns .ds-btn-secondary { width: 100%; max-width: 320px; justify-content: center; }

  /* Contact */
  .ds-contact { padding: 48px 0; }
  .ds-contact-inner { padding: 0 20px; }
  .ds-contact-title { font-size: 26px; }
  .ds-form-row { grid-template-columns: 1fr; gap: 0; }
  .ds-form-card { padding: 24px 20px; }

  /* FAQ */
  .ds-faq { padding: 48px 0; }
  .ds-faq-inner { padding: 0 20px; }
  .ds-faq-title { font-size: 26px; }
  .ds-faq-trigger { font-size: 14px; padding: 16px 20px; min-height: 56px; }
  .ds-faq-answer { padding: 0 20px 16px; }

  /* Section shared */
  .ds-section-title { font-size: 26px; }
  .ds-section-desc { font-size: 15px; }

  /* Footer */
  .ds-footer { padding: 40px 0 24px; }
  .ds-footer-inner { padding: 0 20px; }
  .ds-footer-grid { grid-template-columns: 1fr; gap: 28px; margin-bottom: 32px; }
  .ds-footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
  .ds-footer-bottom-links { flex-wrap: wrap; gap: 12px; }

  /* Trust bar separators */
  .ds-trust-sep { display: none; }
  .ds-trust-bar-inner { gap: 12px; }

  /* Modal */
  .ds-modal-body { padding: 20px 20px 24px; }
  .ds-modal-header { padding: 24px 20px; }
}
