/* ==============================
   NAVBAR
============================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  transition: var(--transition);
  background: transparent;
}

#navbar.scrolled {
  background: rgba(1, 30, 43, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--glass-border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: none;
  flex-shrink: 0;
  overflow: hidden;
}

.nav-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 8px rgba(43, 165, 178, 0.50));
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -.01em;
}

.nav-logo-text span {
  color: var(--color-cyan);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--color-muted);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--color-cyan);
  transform: scaleX(0);
  transition: transform .25s ease;
  transform-origin: left;
}

.nav-links a:hover { color: var(--color-white); }
.nav-links a:hover::after { transform: scaleX(1); }

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .9rem;
  padding: 11px 24px;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--color-cyan);
  color: var(--color-bg);
}
.btn-primary:hover {
  background: #36bfcc;
  box-shadow: var(--glow-cyan);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--color-gold);
  color: #011e2b;
}
.btn-gold:hover {
  background: #ffc11e;
  box-shadow: var(--glow-gold);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 1px solid var(--glass-border);
}
.btn-outline:hover {
  border-color: var(--color-cyan);
  color: var(--color-cyan);
  background: rgba(43, 165, 178, 0.08);
}

.btn-sm { padding: 8px 18px; font-size: .82rem; border-radius: 9px; }

.btn-whatsapp-nav {
  background: var(--color-gold);
  color: #011e2b;
  font-size: .85rem;
  padding: 9px 20px;
}
.btn-whatsapp-nav:hover {
  background: #ffc11e;
  box-shadow: var(--glow-gold);
  transform: translateY(-1px);
}

/* Menu mobile */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: transparent;
  border: none;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-mobile {
  display: none;
  position: absolute;
  top: 72px; left: 0; right: 0;
  background: rgba(1, 30, 43, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 24px 32px;
  flex-direction: column;
  gap: 20px;
}

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

.nav-mobile a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-muted);
  padding: 6px 0;
  border-bottom: 1px solid var(--glass-border-alt);
}
.nav-mobile a:last-of-type { border-bottom: none; }
.nav-mobile a:hover { color: var(--color-cyan); }

/* ==============================
   HERO
============================== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 24px 80px;
  overflow-x: clip;
  overflow-y: visible;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 70% 50%, rgba(43, 165, 178, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(59, 78, 115, 0.18) 0%, transparent 60%),
    linear-gradient(160deg, #011e2b 0%, #011520 55%, #021828 100%);
  z-index: 0;
}

/* Grid de fundo */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(43,165,178,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43,165,178,.06) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 0;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  overflow: visible;
}

.hero-content { max-width: 580px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-cyan);
  margin-bottom: 24px;
}

.hero-eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--color-cyan);
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 20px;
  letter-spacing: -.02em;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--color-muted);
  margin-bottom: 40px;
  line-height: 1.65;
}

.hero-sub strong {
  color: var(--color-gold);
  font-weight: 600;
}

.hero-sub em {
  color: var(--color-cyan);
  font-style: normal;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  overflow: visible;
}

/* Imagem hero — cinematográfica e dominante */
.hero-image {
  width: clamp(560px, 62vw, 840px);
  max-width: none;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 2;
  margin-right: -64px;
  filter:
    drop-shadow(0 0 72px rgba(43, 165, 178, 0.38))
    drop-shadow(0 0 140px rgba(43, 165, 178, 0.16));
  transform: scale(1.06);
  transform-origin: center right;
}

/* Glow orb atrás da imagem hero */
.hero-orb {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43,165,178,.16) 0%, transparent 70%);
  filter: blur(48px);
  z-index: 0;
}

.hero-art {
  position: relative;
  z-index: 1;
  width: 380px;
  height: 380px;
  border-radius: 28px;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: var(--glow-cyan-sm), inset 0 1px 0 rgba(255,255,255,.05);
  overflow: hidden;
}

/* Placeholder — substituir por <img> quando o arquivo hero-ai.png existir */
.hero-art-placeholder {
  font-family: var(--font-heading);
  font-size: 7rem;
  font-weight: 700;
  color: var(--color-cyan);
  text-shadow: 0 0 60px rgba(43,165,178,.6);
  line-height: 1;
  user-select: none;
}

.hero-art-label {
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--color-muted);
}

/* Linhas decorativas no canto */
.hero-art::before {
  content: '';
  position: absolute;
  top: 16px; left: 16px;
  width: 40px; height: 40px;
  border-top: 1px solid var(--color-cyan);
  border-left: 1px solid var(--color-cyan);
  border-radius: 4px 0 0 0;
  opacity: .5;
}

.hero-art::after {
  content: '';
  position: absolute;
  bottom: 16px; right: 16px;
  width: 40px; height: 40px;
  border-bottom: 1px solid var(--color-gold);
  border-right: 1px solid var(--color-gold);
  border-radius: 0 0 4px 0;
  opacity: .4;
}

/* Stats abaixo do hero */
.hero-stats {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 0;
  padding: 22px 32px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  margin-top: 48px;
  max-width: 520px;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 0 16px;
}

.stat-item + .stat-item {
  border-left: 1px solid var(--glass-border-alt);
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--color-cyan);
  display: block;
}

.stat-label {
  font-size: .75rem;
  color: var(--color-muted);
  letter-spacing: .04em;
}

/* ==============================
   SOBRE
============================== */
#sobre { background: var(--color-bg); }

.sobre-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
}

.sobre-visual {
  position: relative;
}

.sobre-card-bg {
  border-radius: var(--radius-card);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  padding: 44px 40px;
  box-shadow: var(--glow-cyan-sm);
}

.sobre-concept {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.concept-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  border-radius: 14px;
  background: rgba(59,78,115,.18);
  border: 1px solid var(--glass-border-alt);
}

.concept-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.concept-icon.cyan { background: rgba(43,165,178,.15); }
.concept-icon.gold { background: rgba(247,175,2,.12); }

.concept-title {
  font-family: var(--font-heading);
  font-size: .95rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 4px;
}

.concept-desc {
  font-size: .85rem;
  color: var(--color-muted);
  line-height: 1.5;
}

.sobre-text blockquote {
  font-size: 1.05rem;
  color: var(--color-muted);
  line-height: 1.75;
  border-left: 2px solid var(--color-cyan);
  padding-left: 20px;
  margin-top: 24px;
  font-style: italic;
}

/* ==============================
   CARDS GERAIS
============================== */
.card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border-alt);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(43,165,178,.4), transparent);
  opacity: 0;
  transition: opacity .3s;
}

.card:hover {
  border-color: rgba(43,165,178,.38);
  box-shadow: var(--glow-cyan-sm);
  transform: translateY(-4px);
}

.card:hover::before { opacity: 1; }

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(43,165,178,.12);
  border: 1px solid rgba(43,165,178,.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.card-status {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 10px;
}

.status-done  { background: rgba(43,165,178,.12); color: var(--color-cyan); border: 1px solid rgba(43,165,178,.3); }
.status-beta  { background: rgba(247,175,2,.10);  color: var(--color-gold); border: 1px solid rgba(247,175,2,.3); }
.status-future{ background: rgba(59,78,115,.25);  color: #8fa3b1;           border: 1px solid rgba(59,78,115,.4); }

.card-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-white);
}

.card-desc {
  font-size: .88rem;
  color: var(--color-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

/* ==============================
   SOLUÇÕES
============================== */
#solucoes { background: linear-gradient(180deg, var(--color-bg) 0%, #011520 100%); }

.cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.card-solucao .card-icon { font-size: 1.8rem; }

/* ==============================
   PROJETOS FUTUROS
============================== */
#projetos {
  background: #011520;
}

.cards-grid-5 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.card-futuro {
  padding: 24px 22px;
}

.card-futuro .card-icon {
  width: 42px;
  height: 42px;
  font-size: 1.2rem;
  border-radius: 11px;
  margin-bottom: 14px;
  background: rgba(59,78,115,.28);
  border-color: rgba(59,78,115,.4);
}

.card-futuro .card-title { font-size: 1rem; }
.card-futuro .card-desc  { font-size: .83rem; margin-bottom: 14px; }

/* ==============================
   DIFERENCIAIS
============================== */
#diferenciais {
  background: var(--color-bg);
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}

.card-dif {
  text-align: center;
  padding: 36px 24px;
}

.card-dif .card-icon {
  margin: 0 auto 18px;
}

.card-dif .card-title { font-size: 1rem; margin-bottom: 8px; }
.card-dif .card-desc  { font-size: .85rem; margin-bottom: 0; }

/* ==============================
   CTA FINAL
============================== */
#cta-final {
  background: linear-gradient(160deg, #011e2b 0%, #021828 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 100px 24px;
}

#cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(43,165,178,.09) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 50% 90%, rgba(247,175,2,.06) 0%, transparent 60%);
  z-index: 0;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 18px;
}

.cta-sub {
  font-size: 1.05rem;
  color: var(--color-muted);
  margin-bottom: 40px;
  line-height: 1.7;
}

.cta-btn-wrap {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==============================
   FOOTER
============================== */
#footer {
  background: #010e16;
  border-top: 1px solid var(--glass-border);
  padding: 56px 24px 36px;
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--glass-border-alt);
}

.footer-brand { }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: .88rem;
  color: var(--color-muted);
  line-height: 1.65;
  max-width: 300px;
}

.footer-tagline strong {
  color: var(--color-gold);
}

.footer-col h5 {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--color-cyan);
  margin-bottom: 16px;
}

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul a {
  font-size: .88rem;
  color: var(--color-muted);
  transition: var(--transition);
}

.footer-col ul a:hover { color: var(--color-white); }

.footer-bottom {
  max-width: 1160px;
  margin: 24px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .8rem;
  color: var(--color-muted);
  flex-wrap: wrap;
  gap: 8px;
}

/* WhatsApp flutuante */
.fab-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: var(--transition);
  font-size: 1.5rem;
}

.fab-whatsapp:hover {
  background: #1ebe5a;
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.55);
}

/* ==============================
   SEÇÃO HEADER COMUM
============================== */
.section-header {
  margin-bottom: 0;
}

.section-header-center {
  text-align: center;
}

.section-header-center .divider {
  margin: 18px auto 0;
  background: linear-gradient(90deg, transparent, var(--color-cyan), transparent);
}

.section-header-center .section-desc {
  margin: 18px auto 0;
}

/* ==============================
   EQUIPE
============================== */
#equipe {
  background: linear-gradient(180deg, #011520 0%, var(--color-bg) 100%);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin-top: 52px;
}

/* Linha 1: 3 cards, cada um ocupa 2 colunas */
.team-grid .team-card { grid-column: span 2; }

/* Linha 2: 2 cards centralizados — começam na coluna 2 e 4 */
.team-grid .team-card:nth-child(4) { grid-column: 2 / span 2; }
.team-grid .team-card:nth-child(5) { grid-column: 4 / span 2; }

.team-card {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: 32px 26px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.team-card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(43, 165, 178, 0.35), transparent);
  opacity: 0;
  transition: opacity .3s;
}

.team-card:hover {
  border-color: rgba(43, 165, 178, 0.25);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.30), 0 0 20px rgba(43, 165, 178, 0.08);
  transform: translateY(-5px);
}

.team-card:hover::before { opacity: 1; }

/* Avatar */
.team-avatar-wrap {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, rgba(43, 165, 178, 0.6), rgba(59, 78, 115, 0.4));
  flex-shrink: 0;
  margin-bottom: 20px;
}

.team-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  display: block;
  background: var(--color-petrol);
}

/* Info */
.team-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.team-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 5px;
  line-height: 1.2;
}

.team-role {
  font-size: .75rem;
  font-weight: 600;
  color: var(--color-cyan);
  letter-spacing: .03em;
  margin-bottom: 14px;
  line-height: 1.4;
}

.team-desc {
  font-size: .84rem;
  color: var(--color-muted);
  line-height: 1.65;
  margin-bottom: 18px;
}

/* Tags */
.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-top: auto;
}

.team-tag {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .05em;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(43, 165, 178, 0.08);
  border: 1px solid rgba(43, 165, 178, 0.20);
  color: var(--color-muted);
  transition: var(--transition);
}

.team-card:hover .team-tag {
  border-color: rgba(43, 165, 178, 0.35);
  color: var(--color-text);
}

.team-tag-gold {
  background: rgba(247, 175, 2, 0.08);
  border-color: rgba(247, 175, 2, 0.22);
  color: var(--color-gold);
}

.team-card:hover .team-tag-gold {
  border-color: rgba(247, 175, 2, 0.45);
  color: var(--color-gold);
}

/* ==============================
   CLIENTES & PROJETOS REAIS
============================== */
#clientes {
  background: var(--color-bg);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 52px;
}

/* ── Card ── */
.client-card {
  background: rgba(255, 255, 255, 0.028);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 22px;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.client-card:hover {
  border-color: rgba(43, 165, 178, 0.28);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.32), 0 0 24px rgba(43, 165, 178, 0.08);
  transform: translateY(-5px);
}

/* ── Browser mockup ── */
.client-browser {
  width: 100%;
  flex-shrink: 0;
}

.client-browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #0d1f2d;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.browser-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot-red    { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green  { background: #28c840; }

.browser-url {
  flex: 1;
  margin: 0 10px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: .68rem;
  color: var(--color-muted);
  letter-spacing: .02em;
  display: flex;
  align-items: center;
  gap: 5px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.client-browser-screen {
  height: 248px;
  overflow: hidden;
  background: #0a1520;
  position: relative;
}

/* Screenshot real */
.client-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform .55s cubic-bezier(.4, 0, .2, 1), filter .55s ease;
  filter: brightness(.96) saturate(1.02);
}

.client-card:hover .client-screenshot {
  transform: scale(1.04);
  filter: brightness(1.02) saturate(1.06);
}

/* Overlay gradiente suave no rodapé da screenshot — integra com o card */
.client-browser-screen::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 56px;
  background: linear-gradient(to top, rgba(8, 20, 30, 0.72) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
  transition: opacity .3s;
}

.mockup-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 14px;
  background: rgba(0,0,0,.25);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.mockup-nav-light { background: rgba(255,255,255,.04); }

.mockup-logo-bar {
  width: 52px;
  height: 7px;
  border-radius: 4px;
  background: rgba(43, 165, 178, 0.55);
}

.mockup-logo-bar.accent-rose { background: rgba(230, 120, 150, 0.55); }

.mockup-nav-links {
  display: flex;
  gap: 8px;
}

.mockup-nav-links span {
  width: 22px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,.15);
  display: block;
}

.mockup-hero {
  flex: 1;
  padding: 16px 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mockup-hero-split {
  flex-direction: row;
  gap: 10px;
  align-items: center;
}

.mockup-hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mockup-hero-img {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  background: rgba(230, 120, 150, 0.18);
  border: 1px solid rgba(230, 120, 150, 0.22);
  flex-shrink: 0;
}

.mockup-eyebrow {
  width: 38px;
  height: 4px;
  border-radius: 2px;
  background: rgba(43,165,178,.5);
  margin-bottom: 3px;
}

.mockup-eyebrow.accent-rose-bar { background: rgba(230,120,150,.5); }

.mockup-h1 {
  width: 80%;
  height: 7px;
  border-radius: 3px;
  background: rgba(255,255,255,.35);
}

.mockup-h1.short { width: 55%; background: rgba(255,255,255,.22); }

.mockup-p {
  width: 90%;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,.12);
  margin-top: 3px;
}

.mockup-p.short-p { width: 65%; }

.mockup-cta-row {
  display: flex;
  gap: 7px;
  margin-top: 7px;
}

.mockup-btn {
  height: 14px;
  border-radius: 4px;
}

.mockup-btn.primary         { width: 58px; background: rgba(43,165,178,.6); }
.mockup-btn.outline         { width: 46px; background: transparent; border: 1px solid rgba(255,255,255,.2); }
.mockup-btn.accent-rose-btn { background: rgba(230,120,150,.6); }

.mockup-cards-row {
  display: flex;
  gap: 7px;
  padding: 0 14px 10px;
}

.mockup-card {
  flex: 1;
  height: 32px;
  border-radius: 6px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
}

.mockup-services-row {
  display: flex;
  gap: 6px;
  padding: 0 14px 10px;
}

.mockup-service-item {
  flex: 1;
  height: 24px;
  border-radius: 5px;
  background: rgba(230,120,150,.10);
  border: 1px solid rgba(230,120,150,.15);
}

/* Glow ciano suave no hover — reforça a borda superior da screenshot */
.client-card:hover .client-browser-screen::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(43,165,178,.55), transparent);
  z-index: 2;
  pointer-events: none;
}

/* ── Info inferior ── */
.client-info {
  padding: 24px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.client-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }

.client-category {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--color-cyan);
  background: rgba(43,165,178,.08);
  border: 1px solid rgba(43,165,178,.20);
  padding: 3px 10px 3px 8px;
  border-radius: 100px;
  margin-bottom: 8px;
  display: flex;
}

.client-category-rose {
  color: rgb(220, 130, 155);
  background: rgba(220,130,155,.08);
  border-color: rgba(220,130,155,.22);
}

.client-name {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.25;
}

.client-desc {
  font-size: .87rem;
  color: var(--color-muted);
  line-height: 1.65;
  flex: 1;
}

.client-btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}

.client-btn:hover {
  color: var(--color-cyan);
  border-color: var(--color-cyan);
  gap: 9px;
}

.clients-footer-note {
  text-align: center;
  margin-top: 40px;
  font-size: .9rem;
  color: var(--color-muted);
}

.clients-footer-note a {
  font-weight: 600;
  transition: var(--transition);
}

.clients-footer-note a:hover { opacity: .75; }
