/* ═══════════════════════════════════════════════════════════════
   CONSULTUS – Comércio e Serviços de Informática, Lda.
   style.css — Folha de estilos principal para todas as páginas
   ═══════════════════════════════════════════════════════════════ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 17px; }
body {
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  background: #fff;
  color: #1d1d1f;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── VARIÁVEIS ─── */
:root {
  --black:      #1d1d1f;
  --gray-1:     #f5f5f7;
  --gray-2:     #e8e8ed;
  --gray-3:     #6e6e73;
  --gray-4:     #86868b;
  --blue:       #1E72B8;
  --blue-d:     #002D74;
  --blue-l:     rgba(30,114,184,0.08);
  --brand:      #002D74;
  --bordeaux:   #9E1B4D;
  --white:      #ffffff;
  --radius:     18px;
  --radius-sm:  12px;
}

/* ═══════════════════════════════════════
   NAV
   ═══════════════════════════════════════ */
nav {
  position: fixed; inset: 0 0 auto;
  z-index: 100;
  height: 78px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 0.5px solid rgba(0,0,0,0.08);
}
.nav-brand { display: flex; align-items: center; text-decoration: none; }
.nav-logo { height: 45px; width: auto; display: block; }
.nav-logo-word {
  font-size: 1rem; font-weight: 800; letter-spacing: -0.02em;
  color: var(--blue); text-decoration: none;
}
.nav-links {
  display: flex; align-items: center; gap: 1rem;
  list-style: none;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-links a {
  color: var(--brand); text-decoration: none;
  font-size: 0.70rem; font-weight: 500; letter-spacing: 0.01em;
  transition: color 0.15s; white-space: nowrap;
}
.nav-links a:hover { color: var(--blue); }
.nav-links a.active {
  color: var(--bordeaux);
  border-bottom: 1.5px solid var(--bordeaux);
  padding-bottom: 1px;
}
.nav-cta {
  font-size: 0.74rem; font-weight: 600; color: var(--blue) !important;
  text-decoration: none; transition: color 0.15s !important; white-space: nowrap;
}
.nav-cta:hover { color: #5ba3d9 !important; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--blue); transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── MOBILE MENU ─── */
.mob-menu {
  display: none; position: fixed; inset: 0;
  background: rgba(29,29,31,0.97); backdrop-filter: blur(20px);
  z-index: 99; flex-direction: column; align-items: center;
  justify-content: center; gap: 1.75rem; overflow-y: auto; padding: 2rem;
}
.mob-menu.open { display: flex; }
.mob-menu a {
  color: #fff; font-size: 1.5rem; font-weight: 700;
  text-decoration: none; transition: color 0.15s; text-align: center;
}
.mob-menu a:hover { color: var(--blue); }
.mob-menu .mob-cta {
  margin-top: 0.5rem; color: var(--blue) !important;
  font-size: 1rem !important;
}

/* ═══════════════════════════════════════
   HERO — Página Home (ecrã completo)
   ═══════════════════════════════════════ */
.hero {
  min-height: 100svh;
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: flex-end;
  text-align: left;
  padding: calc(78px + 1rem) 3.5rem 4.5rem;
  position: relative; overflow: hidden;
  background: var(--black);
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(to top,  rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.45) 45%, rgba(0,0,0,0.18) 100%),
    linear-gradient(to right, rgba(0,0,0,0.55) 0%, transparent 65%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 680px;
}
.hero-eyebrow {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp 0.8s 0.1s ease forwards;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  font-weight: 800; color: #fff; line-height: 1.07;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  opacity: 0; animation: fadeUp 0.8s 0.25s ease forwards;
}
.hero p {
  font-size: clamp(0.92rem, 1.5vw, 1.05rem); font-weight: 300;
  color: rgba(255,255,255,0.65); max-width: 480px; line-height: 1.68;
  margin-bottom: 2.25rem;
  opacity: 0; animation: fadeUp 0.8s 0.4s ease forwards;
}
.hero-actions {
  display: flex; align-items: center; gap: 1rem;
  flex-wrap: wrap; justify-content: flex-start;
  opacity: 0; animation: fadeUp 0.8s 0.55s ease forwards;
}
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  opacity: 0; animation: fadeUp 0.8s 0.9s ease forwards;
}
.hero-scroll span {
  font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray-4);
}
.hero-scroll-bar {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:.3} 50%{opacity:1} }
@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }

/* ═══════════════════════════════════════
   PAGE HERO — Páginas internas (compacto)
   ═══════════════════════════════════════ */
.page-hero {
  padding: 9rem 2rem 5rem;
  background: var(--black);
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 80% at 20% 80%, rgba(30,114,184,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 80% 10%, rgba(158,27,77,0.1) 0%, transparent 50%);
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero .hero-eyebrow {
  opacity: 0; animation: fadeUp 0.7s 0.1s ease forwards;
}
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800; color: #fff; line-height: 1.08;
  letter-spacing: -0.03em; max-width: 700px; margin: 0 auto 1.25rem;
  opacity: 0; animation: fadeUp 0.7s 0.22s ease forwards;
}
.page-hero p {
  font-size: 1.05rem; font-weight: 300;
  color: var(--gray-4); max-width: 520px; margin: 0 auto;
  line-height: 1.65;
  opacity: 0; animation: fadeUp 0.7s 0.34s ease forwards;
}

/* ═══════════════════════════════════════
   BOTÕES
   ═══════════════════════════════════════ */
.btn-solid {
  display: inline-block; padding: 0.75rem 1.75rem;
  background: var(--brand); color: #fff; text-decoration: none;
  font-size: 0.88rem; font-weight: 600; border-radius: 980px;
  transition: background 0.2s, transform 0.2s; border: none; cursor: pointer;
  font-family: inherit;
}
.btn-solid:hover { background: var(--blue-d); transform: scale(1.02); }
.btn-solid.btn-dark {
  background: var(--black); color: #fff;
}
.btn-solid.btn-dark:hover { background: #333; }
.btn-text {
  display: inline-flex; align-items: center; gap: 0.3rem;
  color: var(--blue); text-decoration: none;
  font-size: 0.88rem; font-weight: 600; transition: gap 0.2s;
  background: none; border: none; cursor: pointer; font-family: inherit;
}
.btn-text:hover { gap: 0.55rem; }
.btn-text::after { content: '→'; }
.btn-outline {
  display: inline-block; padding: 0.75rem 1.75rem;
  border: 1.5px solid var(--gray-2); color: var(--black); text-decoration: none;
  font-size: 0.88rem; font-weight: 600; border-radius: 980px;
  transition: border-color 0.2s, transform 0.2s; background: none;
  cursor: pointer; font-family: inherit;
}
.btn-outline:hover { border-color: var(--blue); transform: scale(1.02); }
.btn-outline.btn-light {
  border-color: rgba(255,255,255,0.25); color: #fff;
}
.btn-outline.btn-light:hover { border-color: #fff; }

/* ═══════════════════════════════════════
   UTILITÁRIOS PARTILHADOS
   ═══════════════════════════════════════ */
.container    { max-width: 1080px; margin: 0 auto; padding: 0 2rem; }
.container-sm { max-width: 720px;  margin: 0 auto; padding: 0 2rem; }
.container-lg { max-width: 1240px; margin: 0 auto; padding: 0 2rem; }

.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.40s; }
.delay-6 { transition-delay: 0.48s; }

.section-label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--blue);
  display: block; margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.1;
  color: var(--black);
}
.section-title.light { color: #fff; }
.section-sub {
  font-size: 1.05rem; font-weight: 300; color: var(--gray-3);
  line-height: 1.65; margin-top: 1rem;
}
.text-blue { color: var(--blue); font-style: normal; }

/* ═══════════════════════════════════════
   STATEMENT
   ═══════════════════════════════════════ */
.statement {
  padding: 8rem 2rem;
  background: var(--white); text-align: center;
}
.statement-text {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.2;
  color: var(--black); max-width: 760px; margin: 0 auto;
}
.statement-text em { font-style: normal; color: var(--bordeaux); }

/* ═══════════════════════════════════════
   SERVIÇOS — Grid de cards (Home)
   ═══════════════════════════════════════ */
.services { padding: 7rem 0; background: var(--gray-1); }
.services-header { margin-bottom: 3.5rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.scard {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.scard:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.scard-img { height: 180px; overflow: hidden; background: var(--gray-1); }
.scard-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; display: block; }
.scard:hover .scard-img img { transform: scale(1.06); }
.scard-body { padding: 1.75rem; }
.scard-icon {
  width: 38px; height: 38px; color: var(--bordeaux);
  margin-bottom: 1rem; stroke-width: 1.5;
}
.scard h3 {
  font-size: 1rem; font-weight: 700; letter-spacing: -0.01em;
  color: var(--black); margin-bottom: 0.5rem;
}
.scard p {
  font-size: 0.85rem; font-weight: 300; color: var(--gray-3);
  line-height: 1.65;
}

/* ═══════════════════════════════════════
   PARCEIROS / DESTAQUE
   ═══════════════════════════════════════ */
.partners { padding: 8rem 2rem; background: var(--white); text-align: center; }
.partners-badge {
  display: inline-flex; align-items: center; gap: 2rem;
  padding: 2rem 3rem;
  background: var(--gray-1); border-radius: var(--radius);
  margin: 3rem auto; flex-wrap: wrap; justify-content: center;
}
.badge-name {
  font-size: 1.5rem; font-weight: 800; letter-spacing: -0.03em;
  line-height: 1; color: var(--black);
}
.badge-sep { width: 1px; height: 40px; background: var(--gray-2); }
.partners-list {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem;
  max-width: 560px; margin: 0 auto; text-align: left;
}
.partner-item {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.9rem; color: var(--gray-3); font-weight: 400; line-height: 1.5;
}
.partner-item::before {
  content: '';
  flex-shrink: 0; width: 18px; height: 18px; margin-top: 2px;
  border-radius: 50%;
  background: rgba(30,114,184,0.1);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%231E72B8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-size: 10px; background-position: center; background-repeat: no-repeat;
}

/* ═══════════════════════════════════════
   ESTATÍSTICAS
   ═══════════════════════════════════════ */
.stats { padding: 7rem 0; background: var(--black); }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat {
  text-align: center; padding: 2rem;
  border-right: 0.5px solid rgba(255,255,255,0.1);
}
.stat:last-child { border-right: none; }
.stat-n {
  font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800;
  letter-spacing: -0.04em; color: var(--white); line-height: 1;
}
.stat-n em { font-style: normal; color: var(--blue); }
.stat-l {
  font-size: 0.78rem; font-weight: 500; color: var(--gray-4);
  letter-spacing: 0.04em; margin-top: 0.5rem; text-transform: uppercase;
}

/* ═══════════════════════════════════════
   ASSISTÊNCIA REMOTA — Card CTA
   ═══════════════════════════════════════ */
.remote { padding: 8rem 2rem; background: var(--black); text-align: center; position: relative; overflow: hidden; }
.remote-bg { position: absolute; inset: 0; z-index: 0; }
.remote-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.15); display: block; }
.remote-card {
  position: relative; z-index: 1;
  max-width: 640px; margin: 0 auto;
  background: var(--white); border-radius: 24px;
  padding: 4rem 3.5rem;
  box-shadow: 0 4px 40px rgba(0,0,0,0.08);
}
.remote-icon {
  width: 56px; height: 56px; margin: 0 auto 1.75rem;
  background: rgba(158,27,77,0.08); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--bordeaux);
}
.remote-icon svg { width: 28px; height: 28px; stroke-width: 1.5; }
.remote-card .section-title { color: var(--black); font-size: clamp(1.6rem, 3vw, 2.25rem); }
.remote-card p {
  font-size: 0.95rem; color: var(--gray-3); line-height: 1.7;
  margin: 1rem 0 2rem; font-weight: 300;
}
.remote-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.status-dot {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.75rem; color: var(--gray-4); margin-top: 1.75rem;
}
.status-dot::before {
  content: ''; display: block;
  width: 7px; height: 7px; border-radius: 50%;
  background: #34c759; box-shadow: 0 0 0 3px rgba(52,199,89,0.18);
}

/* ═══════════════════════════════════════
   CTA SECTION — Chamada para ação
   ═══════════════════════════════════════ */
.cta-section {
  padding: 7rem 2rem; background: var(--blue); text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(255,255,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section .section-label { color: rgba(255,255,255,0.6); }
.cta-section .section-title { color: #fff; }
.cta-section p { color: rgba(255,255,255,0.75); margin-top: 1rem; font-size: 1.05rem; font-weight: 300; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2.5rem; }

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
footer {
  background: var(--black); padding: 4rem 0 2rem;
  border-top: 2px solid var(--bordeaux);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand { }
.footer-brand .nav-logo { height: 45px; width: auto; margin-bottom: 1rem; display: block; }
.footer-brand .nav-logo-word {
  font-size: 1.1rem; font-weight: 800; letter-spacing: -0.02em;
  color: #fff; display: block; margin-bottom: 1rem;
}
.footer-brand p { font-size: 0.8rem; color: var(--gray-4); line-height: 1.7; max-width: 220px; }
.footer-col h4 {
  font-size: 0.72rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col ul li a {
  font-size: 0.82rem; color: var(--gray-4); text-decoration: none; transition: color 0.15s;
}
.footer-col ul li a:hover { color: #fff; }
.footer-contact {
  font-size: 0.82rem; color: var(--gray-4);
  margin-bottom: 0.6rem; display: flex; align-items: flex-start; gap: 0.5rem;
}
.footer-contact a { color: var(--gray-4); text-decoration: none; transition: color 0.15s; }
.footer-contact a:hover { color: #fff; }
.footer-contact svg { width: 12px; height: 12px; flex-shrink: 0; margin-top: 3px; color: var(--bordeaux); stroke-width: 1.5; }
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 0.5px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.72rem; color: rgba(255,255,255,0.2); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a {
  font-size: 0.72rem; color: rgba(255,255,255,0.2);
  text-decoration: none; transition: color 0.15s;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.5); }
.reclamacoes-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: #cc0000; color: #fff !important; text-decoration: none;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 0.32rem 0.6rem; border-radius: 4px;
  transition: opacity 0.2s; flex-shrink: 0;
}
.reclamacoes-badge:hover { opacity: 0.82 !important; color: #fff !important; }

/* ═══════════════════════════════════════
   QUEM SOMOS — Pilares da abordagem
   ═══════════════════════════════════════ */
.about-intro { padding: 7rem 0; background: var(--white); }
.about-intro-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.about-intro-text .section-sub { margin-top: 1.25rem; }
.about-intro-text p + p { margin-top: 1rem; }
.about-highlights {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.about-highlight {
  background: var(--gray-1); border-radius: var(--radius-sm);
  padding: 1.5rem;
}
.about-highlight-n {
  font-size: 2rem; font-weight: 800; color: var(--blue);
  letter-spacing: -0.04em; line-height: 1;
}
.about-highlight-l {
  font-size: 0.8rem; font-weight: 500; color: var(--gray-3);
  margin-top: 0.25rem; letter-spacing: 0.01em;
}

.pillars { padding: 7rem 0; background: var(--gray-1); }
.pillars-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem; margin-top: 3rem;
}
.pillar-card {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}
.pillar-icon {
  width: 46px; height: 46px;
  background: rgba(158,27,77,0.08); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--bordeaux); margin-bottom: 1.25rem;
}
.pillar-icon svg { width: 22px; height: 22px; stroke-width: 1.5; }
.pillar-card h3 {
  font-size: 0.95rem; font-weight: 700; color: var(--black);
  margin-bottom: 0.5rem; letter-spacing: -0.01em;
}
.pillar-card p { font-size: 0.83rem; color: var(--gray-3); line-height: 1.65; }

.vm-section { padding: 7rem 0; background: var(--white); }
.vm-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem; margin-top: 3rem;
}
.vm-card {
  background: var(--black); border-radius: var(--radius);
  padding: 3rem 2.5rem;
}
.vm-card .section-label { color: var(--blue); }
.vm-card h3 {
  font-size: 1.5rem; font-weight: 800; color: #fff;
  letter-spacing: -0.02em; margin: 0.5rem 0 1rem;
}
.vm-card p { font-size: 0.9rem; color: var(--gray-4); line-height: 1.75; }

.values-section { padding: 7rem 0; background: var(--gray-1); }
.values-grid {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-top: 3rem; justify-content: center;
}
.value-chip {
  display: flex; align-items: center; gap: 0.6rem;
  background: var(--white); border-radius: 980px;
  padding: 0.9rem 1.75rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  font-size: 0.9rem; font-weight: 600; color: var(--black);
  transition: transform 0.2s, box-shadow 0.2s;
}
.value-chip:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.1); }
.value-chip-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--blue); flex-shrink: 0;
}

/* ═══════════════════════════════════════
   SOFTWARE — Categorias e cards
   ═══════════════════════════════════════ */
.software-section { padding: 5rem 0; background: var(--white); }
.software-section:nth-child(even) { background: var(--gray-1); }
.software-section + .software-section { padding-top: 0; }

.sw-category { padding: 6rem 0 5rem; }
.sw-category:nth-child(odd)  { background: var(--white); }
.sw-category:nth-child(even) { background: var(--gray-1); }

.sw-category-header {
  display: flex; align-items: baseline; gap: 1rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 0.5px solid var(--gray-2);
}
.sw-category-header .section-title { font-size: clamp(1.5rem, 3vw, 2rem); }
.sw-count {
  font-size: 0.72rem; font-weight: 600; color: var(--gray-4);
  letter-spacing: 0.06em; text-transform: uppercase;
  background: var(--gray-2); border-radius: 980px;
  padding: 0.3rem 0.75rem;
}

.sw-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.sw-cards.single { grid-template-columns: 1fr; max-width: 640px; }

.sw-card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--gray-2);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.sw-category:nth-child(odd) .sw-card { background: var(--white); }
.sw-category:nth-child(even) .sw-card { background: var(--white); }
.sw-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  border-color: transparent;
}
.sw-card-top {
  background: var(--black); padding: 2rem 2rem 1.5rem;
  position: relative;
}
.sw-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.65rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.07em; color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.08); border-radius: 980px;
  padding: 0.3rem 0.75rem; margin-bottom: 1rem;
}
.sw-badge::before {
  content: ''; display: block;
  width: 5px; height: 5px; border-radius: 50%; background: var(--bordeaux);
}
.sw-card-top h3 {
  font-size: 1.4rem; font-weight: 800; color: #fff;
  letter-spacing: -0.02em; line-height: 1.1;
}
.sw-card-top .sw-tagline {
  font-size: 0.8rem; color: var(--gray-4); margin-top: 0.35rem;
}
.sw-card-body { padding: 1.75rem 2rem; }
.sw-card-body p {
  font-size: 0.88rem; color: var(--gray-3); line-height: 1.7;
  margin-bottom: 1.25rem;
}
.sw-features {
  list-style: none; display: flex; flex-direction: column; gap: 0.45rem;
  margin-bottom: 1.75rem;
}
.sw-features li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.82rem; color: var(--gray-3); line-height: 1.5;
}
.sw-features li::before {
  content: '';
  flex-shrink: 0; width: 16px; height: 16px; margin-top: 1px;
  border-radius: 50%;
  background: var(--blue-l);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%231E72B8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-size: 9px; background-position: center; background-repeat: no-repeat;
}
.sw-img-placeholder {
  height: 140px; background: var(--gray-1);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-4); font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.04em; text-transform: uppercase;
  border-bottom: 1px solid var(--gray-2);
}
/* Placeholder para imagens de produtos — substitua pela img real */
.sw-card-top .sw-product-img {
  width: 100%; height: 120px; object-fit: contain;
  display: block; margin-top: 1rem;
}
.sw-card-img {
  width: 100%; aspect-ratio: 9/4; overflow: hidden;
  background: #fff; border-bottom: 1px solid var(--gray-2);
}
.sw-card-img img {
  width: 100%; height: 100%; object-fit: contain; display: block;
  background: #fff;
}
.sw-card-img-ph {
  width: 100%; aspect-ratio: 9/4; overflow: hidden;
  background: linear-gradient(135deg, var(--gray-1) 0%, var(--gray-2) 100%);
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--gray-2);
}
.sw-card-img-ph svg { width: 40px; height: 40px; color: var(--gray-3); }

/* ═══════════════════════════════════════
   OUTROS SERVIÇOS — Grelha de serviços
   ═══════════════════════════════════════ */
.alt-services { padding: 7rem 0; background: var(--white); }
.alt-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem; margin-top: 3rem;
}
.alt-card {
  background: var(--gray-1); border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  cursor: default;
}
.alt-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.09);
  background: var(--white);
}
.alt-card-icon {
  width: 44px; height: 44px;
  background: rgba(158,27,77,0.08); border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  color: var(--bordeaux); margin-bottom: 1rem;
}
.alt-card-icon svg { width: 20px; height: 20px; stroke-width: 1.5; }
.alt-card h3 {
  font-size: 0.92rem; font-weight: 700; color: var(--black);
  margin-bottom: 0.4rem; letter-spacing: -0.01em; line-height: 1.3;
}
.alt-card p { font-size: 0.8rem; color: var(--gray-3); line-height: 1.6; }

/* ═══════════════════════════════════════
   FORMULÁRIOS
   ═══════════════════════════════════════ */
.form-section { padding: 7rem 0; background: var(--white); }
.form-section.bg-gray { background: var(--gray-1); }
.form-wrapper {
  max-width: 720px; margin: 0 auto;
  background: var(--white); border-radius: 24px;
  box-shadow: 0 4px 40px rgba(0,0,0,0.07);
  padding: 3.5rem 4rem;
}
.form-wrapper.no-shadow { box-shadow: none; padding: 0; }
.form-header { margin-bottom: 2.5rem; }
.form-header p {
  font-size: 0.92rem; color: var(--gray-3); margin-top: 0.75rem; line-height: 1.65;
}
.form-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-grid.full { grid-template-columns: 1fr; }
.form-group { display: flex; flex-direction: column; gap: 0.45rem; }
.form-group.span-2 { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.78rem; font-weight: 600; color: var(--black);
  letter-spacing: 0.01em;
}
.form-group label span { color: var(--blue); margin-left: 2px; }
.form-input,
.form-textarea,
.form-select {
  width: 100%; padding: 0.8rem 1rem;
  border: 1.5px solid var(--gray-2); border-radius: 10px;
  font-family: inherit; font-size: 0.88rem; color: var(--black);
  background: var(--white); outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none; appearance: none;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30,114,184,0.12);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--gray-4); }
.form-textarea { min-height: 140px; resize: vertical; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%2386868b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.85rem center; background-size: 12px;
  padding-right: 2.25rem; cursor: pointer;
}
.form-actions {
  margin-top: 2rem; display: flex; align-items: center;
  gap: 1rem; flex-wrap: wrap;
}
.form-note {
  font-size: 0.78rem; color: var(--gray-4); margin-top: 1.25rem; line-height: 1.6;
}
.form-note a { color: var(--blue); text-decoration: none; }
.form-note a:hover { text-decoration: underline; }

/* Email CTA block */
.email-cta {
  background: var(--gray-1); border-radius: var(--radius);
  padding: 2.5rem 3rem;
  display: flex; align-items: center; gap: 2rem;
  margin-bottom: 3rem;
}
.email-cta-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  background: var(--blue-l); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; color: var(--blue);
}
.email-cta-icon svg { width: 24px; height: 24px; stroke-width: 1.5; }
.email-cta-content h3 {
  font-size: 1rem; font-weight: 700; color: var(--black); margin-bottom: 0.25rem;
}
.email-cta-content p { font-size: 0.85rem; color: var(--gray-3); }
.email-cta-content a {
  font-size: 1rem; font-weight: 700; color: var(--blue);
  text-decoration: none; transition: color 0.15s;
}
.email-cta-content a:hover { color: var(--blue-d); }

/* Urgência do suporte */
.urgency-options {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem;
}
.urgency-opt { display: none; }
.urgency-opt + label {
  display: flex; flex-direction: column; gap: 0.2rem;
  border: 1.5px solid var(--gray-2); border-radius: var(--radius-sm);
  padding: 1rem 1.25rem; cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.urgency-opt + label .urgency-name {
  font-size: 0.85rem; font-weight: 700; color: var(--black);
}
.urgency-opt + label .urgency-desc {
  font-size: 0.74rem; color: var(--gray-4);
}
.urgency-opt:checked + label {
  border-color: var(--blue);
  background: var(--blue-l);
}

/* ═══════════════════════════════════════
   CONTACTOS
   ═══════════════════════════════════════ */
.contact-section { padding: 7rem 0; background: var(--white); }
.contact-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem; margin-top: 3rem;
}
.contact-card {
  background: var(--gray-1); border-radius: var(--radius);
  padding: 2rem 1.75rem; text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.09);
}
.contact-card-icon {
  width: 52px; height: 52px; margin: 0 auto 1.25rem;
  background: var(--blue-l); border-radius: 14px;
  display: flex; align-items: center; justify-content: center; color: var(--blue);
}
.contact-card-icon svg { width: 24px; height: 24px; stroke-width: 1.5; }
.contact-card h3 {
  font-size: 0.88rem; font-weight: 700; color: var(--black);
  margin-bottom: 0.5rem; text-transform: uppercase;
  letter-spacing: 0.06em; font-size: 0.72rem;
}
.contact-card p { font-size: 0.9rem; color: var(--gray-3); line-height: 1.6; }
.contact-card a {
  font-size: 0.95rem; font-weight: 600; color: var(--blue);
  text-decoration: none; transition: color 0.15s;
}
.contact-card a:hover { color: var(--blue-d); }

.reclamacoes-block {
  background: var(--black); border-radius: var(--radius);
  padding: 2.5rem 3rem; margin-top: 2rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  flex-wrap: wrap;
}
.reclamacoes-block h3 {
  font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 0.3rem;
}
.reclamacoes-block p { font-size: 0.82rem; color: var(--gray-4); }

/* ═══════════════════════════════════════
   RESPONSIVO
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid    { grid-template-columns: repeat(2, 1fr); }
  .stats-grid       { grid-template-columns: repeat(2, 1fr); }
  .stat             { border-bottom: 0.5px solid rgba(255,255,255,0.08); }
  .footer-grid      { grid-template-columns: 1fr 1fr; }
  .pillars-grid     { grid-template-columns: repeat(2, 1fr); }
  .alt-services-grid { grid-template-columns: repeat(3, 1fr); }
  .about-intro-grid { grid-template-columns: 1fr; gap: 3rem; }
  .sw-cards         { grid-template-columns: 1fr; }
  .form-wrapper     { padding: 2.5rem 3rem; }
  .contact-grid     { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1100px) {
  .nav-links         { display: none; }
  .nav-cta-desktop   { display: none; }
  .hamburger         { display: flex; }
}

@media (max-width: 768px) {
  nav                { padding: 0 1.5rem; }

  .services-grid      { grid-template-columns: 1fr; }
  .partners-badge     { flex-direction: column; gap: 1rem; padding: 1.5rem 2rem; }
  .badge-sep          { width: 40px; height: 1px; }
  .partners-list      { grid-template-columns: 1fr; }
  .stats-grid         { grid-template-columns: 1fr 1fr; }
  .remote-card        { padding: 2.5rem 1.75rem; }
  .footer-grid        { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom      { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }

  .services           { padding: 5rem 0; }
  .partners           { padding: 5rem 2rem; }
  .statement          { padding: 5rem 2rem; }
  .stats              { padding: 4rem 0; }
  .remote             { padding: 5rem 2rem; }
  .cta-section        { padding: 5rem 2rem; }

  .pillars-grid       { grid-template-columns: 1fr; }
  .vm-grid            { grid-template-columns: 1fr; }
  .alt-services-grid  { grid-template-columns: repeat(2, 1fr); }
  .about-highlights   { grid-template-columns: 1fr; }
  .form-grid          { grid-template-columns: 1fr; }
  .form-group.span-2  { grid-column: auto; }
  .form-wrapper       { padding: 2rem 1.5rem; border-radius: var(--radius); }
  .contact-grid       { grid-template-columns: 1fr; }
  .urgency-options    { grid-template-columns: 1fr; }
  .email-cta          { flex-direction: column; text-align: center; padding: 2rem; }
  .reclamacoes-block  { flex-direction: column; text-align: center; }
  .page-hero          { padding: 7rem 1.5rem 4rem; }
}

@media (max-width: 480px) {
  .stats-grid         { grid-template-columns: 1fr; }
  .hero h1            { font-size: 2.5rem; }
  .alt-services-grid  { grid-template-columns: 1fr; }
}

