/* ============================================================
   CADÊNCIA — Folha de estilos principal v4
   ============================================================ */

:root {
  --fundo:           #07101E;
  --fundo-alt:       #0A1520;
  --fundo-card:      #0E1B2B;
  --fundo-card-alt:  #111E2F;
  --dourado:         #C9A84C;
  --dourado-claro:   #E5C97A;
  --dourado-escuro:  #A8883C;
  --azul-tech:       #4A9EE0;
  --azul-tech-dim:   rgba(74, 158, 224, 0.15);
  --azul-tech-linha: rgba(74, 158, 224, 0.25);
  --texto:           #F0EDE8;
  --texto-sec:       #8B9AAD;
  --texto-muted:     #4A5E72;
  --linha:           rgba(201, 168, 76, 0.15);
  --linha-forte:     rgba(201, 168, 76, 0.35);
  --sombra:          0 4px 24px rgba(0, 0, 0, 0.4);
  --sombra-dourada:  0 0 60px rgba(201, 168, 76, 0.12);
  --transicao:       0.3s ease;
  --raio:            2px;
  --max-largura:     1180px;
}

/* --- Reset & Base ------------------------------------------ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--fundo);
  color: var(--texto);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul {
  list-style: none;
}

/* --- Tipografia -------------------------------------------- */

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: 1.2rem; font-weight: 600; font-family: 'Inter', sans-serif; }
h4 { font-size: 1rem;   font-weight: 600; font-family: 'Inter', sans-serif; }

p {
  color: var(--texto-sec);
  line-height: 1.8;
}

.mono {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  letter-spacing: 0.02em;
}

/* --- Layout ----------------------------------------------- */

.container {
  max-width: var(--max-largura);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 120px 0;
}

/* --- Componentes comuns ------------------------------------ */

.section-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--dourado);
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-weight: 400;
  margin-bottom: 1.25rem;
}

.section-label.azul {
  color: var(--azul-tech);
}

.section-title {
  color: var(--texto);
  margin-bottom: 1.5rem;
}

.divider {
  width: 40px;
  height: 1px;
  background: var(--dourado);
  margin: 2rem 0;
  opacity: 0.6;
}

/* --- Botões ----------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  border-radius: var(--raio);
  transition: all var(--transicao);
  white-space: nowrap;
  min-height: 44px;
}

.btn-primary {
  background: var(--dourado);
  color: var(--fundo);
}

.nav-links a.btn-primary {
  color: var(--fundo);
}

.btn-primary:hover {
  background: var(--dourado-claro);
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.28);
  text-shadow: 0 0 20px rgba(201, 168, 76, 0.4);
}

.btn-outline {
  border: 1px solid rgba(201, 168, 76, 0.35);
  color: var(--dourado);
}

.btn-outline:hover {
  border-color: var(--dourado);
  background: rgba(201, 168, 76, 0.06);
}

.btn-outline-azul {
  border: 1px solid var(--azul-tech-linha);
  color: var(--azul-tech);
}

.btn-outline-azul:hover {
  border-color: var(--azul-tech);
  background: var(--azul-tech-dim);
}

.btn-sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.8rem;
  min-height: 44px;
}

/* --- Navegação -------------------------------------------- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.75rem 0;
  transition: background var(--transicao),
              backdrop-filter var(--transicao),
              padding var(--transicao),
              border-color var(--transicao);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(7, 16, 30, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1.1rem 0;
  border-bottom-color: var(--linha);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-largura);
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.nav-logo-symbol {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
}

.nav-logo-symbol svg {
  width: 100%;
  height: 100%;
}

.nav-logo-texts {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  letter-spacing: 0.22em;
  color: var(--texto);
  font-weight: 400;
  line-height: 1;
}

.nav-logo-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 0.56rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--texto-muted);
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.82rem;
  color: var(--texto-sec);
  letter-spacing: 0.08em;
  transition: color var(--transicao);
}

.nav-links a:hover {
  color: var(--dourado);
}

.nav-cta {
  margin-left: 1.5rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--texto);
  transition: all var(--transicao);
  transform-origin: center;
}

.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);
}

/* --- Menu Mobile ------------------------------------------ */

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--fundo);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

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

.mobile-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--texto);
  letter-spacing: 0.1em;
  transition: color var(--transicao);
  min-height: 44px;
  display: flex;
  align-items: center;
}

.mobile-nav a:hover {
  color: var(--dourado);
}

.mobile-nav .btn {
  margin-top: 0.5rem;
}

.mobile-close {
  position: absolute;
  top: 1.75rem;
  right: 2rem;
  color: var(--texto-sec);
  font-size: 1.25rem;
  line-height: 1;
  padding: 0.75rem;
  transition: color var(--transicao);
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-close:hover {
  color: var(--texto);
}

/* --- Hero ------------------------------------------------- */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}

@supports (min-height: 100svh) {
  .hero { min-height: 100svh; }
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 60% 50%, rgba(201, 168, 76, 0.09) 0%, transparent 50%),
    radial-gradient(ellipse at 25% 60%, rgba(201, 168, 76, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 20%, rgba(201, 168, 76, 0.05) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28'%3E%3Ccircle cx='1' cy='1' r='0.8' fill='%23C9A84C' opacity='0.08'/%3E%3C/svg%3E");
  background-size: auto, auto, auto, 28px 28px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 740px;
}

.hero h1 {
  color: var(--texto);
  margin-bottom: 1.75rem;
}

.hero h1 em {
  color: var(--dourado);
  font-style: normal;
}

.hero-desc {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: var(--texto-sec);
  max-width: 560px;
  margin-bottom: 2.75rem;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: 2.5rem;
  border-top: 1px solid var(--linha);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero-stat-valor {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--dourado);
  font-weight: 700;
}

.hero-stat-desc {
  font-size: 0.76rem;
  color: var(--texto-muted);
  letter-spacing: 0.04em;
}

.hero-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
  align-items: center;
}

.hero-dots span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--dourado);
  animation: dots-fade 2.4s ease-in-out infinite;
}

.hero-dots span:nth-child(2) {
  animation-delay: 0.4s;
}

@keyframes dots-fade {
  0%, 100% { opacity: 0.15; }
  50%       { opacity: 0.55; }
}

.hero-simbolo {
  position: absolute;
  top: 50%;
  right: 6%;
  transform: translateY(-50%);
  width: 340px;
  height: 340px;
  opacity: 0.26;
  pointer-events: none;
  filter: drop-shadow(0 0 28px rgba(201, 168, 76, 0.45));
}

.hero-simbolo .anel-orbit {
  transform-origin: 50% 50%;
  animation: orbit 30s linear infinite;
}

.hero-simbolo .centro-pulse {
  animation: pulse-opacity 4s ease-in-out infinite;
}

@keyframes orbit {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes pulse-opacity {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-simbolo .anel-orbit,
  .hero-simbolo .centro-pulse {
    animation: none;
  }
}

/* --- Benefícios ------------------------------------------- */

.ia-beneficios {
  background: var(--fundo-alt);
  border-top: 1px solid var(--linha);
  border-bottom: 1px solid var(--linha);
}

.ia-beneficios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--linha);
  border-radius: var(--raio);
  overflow: hidden;
  margin-bottom: 3rem;
}

.ia-card {
  padding: 2.5rem 2rem;
  background: var(--fundo-card);
  border-right: 1px solid var(--linha);
  transition: background var(--transicao);
  position: relative;
}

.ia-card:last-child {
  border-right: none;
}

.ia-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--azul-tech), transparent);
  opacity: 0;
  transition: opacity var(--transicao);
}

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

.ia-card:hover {
  background: var(--fundo-card-alt);
}

.ia-card-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 1.25rem;
  color: var(--azul-tech);
}

.ia-card h3 {
  color: var(--texto);
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
}

.ia-card p {
  font-size: 0.875rem;
  margin: 0;
  line-height: 1.7;
}

.ticker-wrapper {
  overflow: hidden;
  border: 1px solid var(--linha);
  border-radius: var(--raio);
  background: var(--fundo-card);
  padding: 1.75rem 0;
}

.ticker-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: ticker 18s linear infinite;
  padding: 0 2rem;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ticker-wrapper:hover .ticker-track {
  animation-play-state: paused;
}

.ia-stat-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.ia-stat-item + .ia-stat-item::before {
  content: '·';
  color: var(--linha-forte);
  font-size: 1.2rem;
  margin-left: -1.5rem;
}

.ia-stat-num {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--azul-tech);
}

.ia-stat-label {
  font-size: 0.8rem;
  color: var(--texto-muted);
}

.ia-nota-ticker {
  overflow: hidden;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  margin-top: 1.5rem;
  padding-top: 1rem;
}

.ia-nota-track {
  display: inline-flex;
  white-space: nowrap;
  animation: nota-ticker 30s linear infinite;
}

.ia-nota-item {
  font-size: 0.78rem;
  color: var(--texto-muted);
  font-style: italic;
  letter-spacing: 0.02em;
  padding-right: 6rem;
}

@keyframes nota-ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* --- Manifesto -------------------------------------------- */

.manifesto {
  background: var(--fundo-alt);
  border-top: 1px solid var(--linha-forte);
  border-bottom: 1px solid var(--linha-forte);
  padding-top: 140px;
  padding-bottom: 140px;
}

.manifesto .section-label {
  color: var(--dourado);
}

.manifesto-intro h2 {
  font-size: clamp(1.8rem, 3.8vw, 3rem);
  margin-top: 1rem;
  margin-bottom: 1.75rem;
}

.manifesto-intro h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: var(--dourado);
  margin-top: 1.25rem;
  opacity: 0.7;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.manifesto-intro p {
  margin-top: 1.5rem;
  max-width: 440px;
}

.manifesto-cards {
  display: flex;
  flex-direction: column;
  gap: 1px;
  border: 1px solid var(--linha);
  border-radius: var(--raio);
  overflow: hidden;
}

.manifesto-card {
  padding: 1.75rem 2rem;
  background: var(--fundo-card);
  border-bottom: 1px solid var(--linha);
  transition: background var(--transicao);
  position: relative;
}

.manifesto-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--dourado);
  opacity: 0;
  transition: opacity var(--transicao);
}

.manifesto-card:hover::before {
  opacity: 0.6;
}

.manifesto-card:last-child {
  border-bottom: none;
}

.manifesto-card:hover {
  background: var(--fundo-card-alt);
}

.manifesto-card-label {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 0.63rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--texto-muted);
  margin-bottom: 0.4rem;
  display: block;
}

.manifesto-card h3 {
  color: var(--texto);
  margin-bottom: 0.4rem;
  font-size: 1rem;
  font-weight: 600;
}

.manifesto-card p {
  font-size: 0.875rem;
  margin: 0;
}

/* --- Sobre ------------------------------------------------ */

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: start;
}

.sobre-intro p {
  margin-top: 1.5rem;
}

.sobre-intro p + p {
  margin-top: 1rem;
}

.sobre-missao-destaque {
  font-size: 1rem;
  color: var(--texto-sec);
  line-height: 1.8;
  border-left: 2px solid var(--dourado);
  padding-left: 1.25rem;
  margin-top: 1.5rem !important;
  margin-bottom: 0.5rem;
}

.fundador-card {
  margin-top: 2.5rem;
  padding: 1.75rem;
  border: 1px solid var(--linha);
  border-radius: var(--raio);
  background: var(--fundo-card);
  position: relative;
  text-align: center;
}

.fundador-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--dourado), transparent);
}

.fundador-nome {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--texto);
  margin-bottom: 0.2rem;
  display: block;
}

.fundador-cargo {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dourado);
  display: block;
  margin-bottom: 1rem;
}

.fundador-quote {
  font-size: 0.875rem;
  color: var(--texto-sec);
  font-style: italic;
  line-height: 1.7;
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(201, 168, 76, 0.25);
}

.valores-titulo {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: 1.5rem;
  display: block;
}

.valores-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--linha);
  border-radius: var(--raio);
  overflow: hidden;
}

.valor-item {
  padding: 1.5rem;
  background: var(--fundo-card);
  border-right: 1px solid var(--linha);
  border-bottom: 1px solid var(--linha);
  transition: background var(--transicao);
}

.valor-item:nth-child(even) {
  border-right: none;
}

.valor-item:nth-child(5) {
  grid-column: 1 / -1;
  border-right: none;
}

.valor-item:last-child,
.valor-item:nth-last-child(2):nth-child(odd) {
  border-bottom: none;
}

.valor-item:hover {
  background: var(--fundo-card-alt);
}

.valor-line {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--dourado);
  margin-bottom: 0.875rem;
  opacity: 0.7;
}

.valor-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--texto);
  letter-spacing: 0.02em;
  margin-bottom: 0.3rem;
  display: block;
}

.valor-desc {
  font-size: 0.8rem;
  color: var(--texto-sec);
  margin: 0;
  line-height: 1.6;
}

/* --- Soluções --------------------------------------------- */

.solucoes {
  background: var(--fundo-alt);
  border-top: 1px solid var(--linha);
  border-bottom: 1px solid var(--linha);
  position: relative;
  overflow: hidden;
}

.solucoes-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}

.solucoes-intro {
  max-width: 520px;
}

.solucoes-intro p {
  margin-top: 1rem;
}

/* Animação de pastas */
.folder-anim {
  background: var(--fundo-card);
  border: 1px solid var(--linha);
  border-radius: var(--raio);
  padding: 1.5rem;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 0.78rem;
  line-height: 1.8;
  color: var(--texto-sec);
  overflow: hidden;
  height: 280px;
  contain: layout style;
}

.folder-anim .folder-root {
  color: var(--dourado);
  font-weight: 700;
}

.folder-anim .folder-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}

.folder-anim .folder-item.visivel {
  max-height: 2rem;
  opacity: 1;
}

.folder-anim .folder-icon {
  color: var(--azul-tech);
  font-size: 0.9rem;
}

.folder-anim .folder-icon.active {
  animation: folder-blink 0.6s ease-in-out;
}

@keyframes folder-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.folder-anim .indent {
  display: inline-block;
  width: 1.2rem;
}

.folder-anim .folder-sub {
  color: var(--texto-muted);
}

/* Momento labels */
.momento-section {
  margin-bottom: 4rem;
}

.momento-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.momento-label-text {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--texto-muted);
  white-space: nowrap;
}

.momento-label-line {
  flex: 1;
  height: 1px;
  background: var(--linha);
}

.momento-label-num {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 0.65rem;
  color: var(--texto-muted);
}

/* Grid de 9 cards — 3 colunas iguais */
.projetos-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.projeto-card {
  padding: 2rem;
  border: 1px solid var(--linha);
  border-radius: var(--raio);
  background: var(--fundo-card);
  transition: all var(--transicao), border-left-color var(--transicao);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  border-left: 3px solid transparent;
}

.projeto-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--dourado), transparent);
  opacity: 0;
  transition: opacity var(--transicao);
}

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

.projeto-card:hover {
  border-color: var(--linha-forte);
  transform: translateY(-2px);
  box-shadow: var(--sombra-dourada);
}

.projeto-card.destaque {
  border-color: rgba(201, 168, 76, 0.25);
}

.projeto-tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 0.2rem 0.75rem;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 2px;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: 0.5rem;
}

.projeto-prazo {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 0.72rem;
  color: var(--texto-muted);
  margin-bottom: 0.25rem;
}

.projeto-nome {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--texto);
  margin-bottom: 0.25rem;
}

.projeto-desc {
  font-size: 0.855rem;
  color: var(--texto-sec);
  margin: 0;
  line-height: 1.7;
  flex: 1;
}

.projeto-items {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--linha);
}

.projeto-items li {
  font-size: 0.8rem;
  color: var(--texto-sec);
  padding-left: 1rem;
  position: relative;
  line-height: 1.5;
}

.projeto-items li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 4px;
  height: 4px;
  background: var(--dourado);
  border-radius: 50%;
  opacity: 0.6;
}

/* ── Cores por card ──────────────────────────────────────── */

.projeto-card--diagnostico { border-left-color: #C9A84C; }
.projeto-card--diagnostico .projeto-tag {
  background: rgba(201, 168, 76, 0.12);
  border-color: rgba(201, 168, 76, 0.35);
  color: #C9A84C;
}
.projeto-card--diagnostico:hover { box-shadow: -2px 0 16px rgba(201, 168, 76, 0.18), var(--sombra-dourada); }

.projeto-card--google { border-left-color: #4EC9B0; }
.projeto-card--google .projeto-tag {
  background: rgba(78, 201, 176, 0.12);
  border-color: rgba(78, 201, 176, 0.35);
  color: #4EC9B0;
}
.projeto-card--google:hover { box-shadow: -2px 0 16px rgba(78, 201, 176, 0.18), 0 4px 24px rgba(0,0,0,0.4); }

.projeto-card--landing { border-left-color: #4A9EE0; }
.projeto-card--landing .projeto-tag {
  background: rgba(74, 158, 224, 0.12);
  border-color: rgba(74, 158, 224, 0.35);
  color: #4A9EE0;
}
.projeto-card--landing:hover { box-shadow: -2px 0 16px rgba(74, 158, 224, 0.18), 0 4px 24px rgba(0,0,0,0.4); }

.projeto-card--site { border-left-color: #9B7AE0; }
.projeto-card--site .projeto-tag {
  background: rgba(155, 122, 224, 0.12);
  border-color: rgba(155, 122, 224, 0.35);
  color: #9B7AE0;
}
.projeto-card--site:hover { box-shadow: -2px 0 16px rgba(155, 122, 224, 0.18), 0 4px 24px rgba(0,0,0,0.4); }

.projeto-card--anuncios { border-left-color: #CE9178; }
.projeto-card--anuncios .projeto-tag {
  background: rgba(206, 145, 120, 0.12);
  border-color: rgba(206, 145, 120, 0.35);
  color: #CE9178;
}
.projeto-card--anuncios:hover { box-shadow: -2px 0 16px rgba(206, 145, 120, 0.18), 0 4px 24px rgba(0,0,0,0.4); }

.projeto-card--kit-redes { border-left-color: #569CD6; }
.projeto-card--kit-redes .projeto-tag {
  background: rgba(86, 156, 214, 0.12);
  border-color: rgba(86, 156, 214, 0.35);
  color: #569CD6;
}
.projeto-card--kit-redes:hover { box-shadow: -2px 0 16px rgba(86, 156, 214, 0.18), 0 4px 24px rgba(0,0,0,0.4); }

.projeto-card--sprint { border-left-color: #DCDCAA; }
.projeto-card--sprint .projeto-tag {
  background: rgba(220, 220, 170, 0.12);
  border-color: rgba(220, 220, 170, 0.35);
  color: #DCDCAA;
}
.projeto-card--sprint:hover { box-shadow: -2px 0 16px rgba(220, 220, 170, 0.18), 0 4px 24px rgba(0,0,0,0.4); }

.projeto-card--dashboard { border-left-color: #6A9955; }
.projeto-card--dashboard .projeto-tag {
  background: rgba(106, 153, 85, 0.12);
  border-color: rgba(106, 153, 85, 0.35);
  color: #6A9955;
}
.projeto-card--dashboard:hover { box-shadow: -2px 0 16px rgba(106, 153, 85, 0.18), 0 4px 24px rgba(0,0,0,0.4); }

.projeto-card--setup { border-left-color: #B5CEA8; }
.projeto-card--setup .projeto-tag {
  background: rgba(181, 206, 168, 0.12);
  border-color: rgba(181, 206, 168, 0.35);
  color: #B5CEA8;
}
.projeto-card--setup:hover { box-shadow: -2px 0 16px rgba(181, 206, 168, 0.18), 0 4px 24px rgba(0,0,0,0.4); }

/* Retainers (Quero crescer / Eixo) */

.retainers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.retainer-card {
  padding: 2.5rem 2rem;
  border: 1px solid var(--linha);
  border-radius: var(--raio);
  background: var(--fundo-card);
  transition: all var(--transicao);
  position: relative;
}

.retainer-card:hover {
  border-color: var(--linha-forte);
  box-shadow: var(--sombra-dourada);
}

.retainer-card.popular {
  border-color: rgba(201, 168, 76, 0.35);
  background: var(--fundo-card-alt);
}

.popular-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #C9A84C, #E5C97A);
  color: var(--fundo);
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.25rem 1.1rem;
  border-radius: 0 0 2px 2px;
  white-space: nowrap;
  animation: badge-glow-dourado 3s ease-in-out infinite;
}

@keyframes badge-glow-dourado {
  0%, 100% { box-shadow: 0 0 8px rgba(201, 168, 76, 0.5); }
  50%       { box-shadow: 0 0 20px rgba(201, 168, 76, 0.8); }
}

.retainer-card--essencial { border-left: 3px solid #4A9EE0; }
.retainer-card--completo.popular { border-left: 3px solid #C9A84C; }
.retainer-card--manutencao { border-left: 3px solid #4EC9B0; }

.retainer-nome {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--azul-tech);
  margin-bottom: 0.75rem;
  display: block;
}

.retainer-tier {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  color: var(--texto);
  margin-bottom: 0.25rem;
  line-height: 1.1;
}

.retainer-subtitulo {
  font-size: 0.82rem;
  color: var(--texto-muted);
  margin-bottom: 0.75rem;
  font-style: italic;
}

.retainer-desc {
  font-size: 0.875rem;
  color: var(--texto-sec);
  margin-bottom: 1.75rem;
  line-height: 1.7;
}

.retainer-items {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.retainer-items li {
  font-size: 0.855rem;
  color: var(--texto-sec);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.5;
}

.retainer-items li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  background: var(--azul-tech);
  border-radius: 50%;
  opacity: 0.7;
}

.solucoes-nota {
  margin-top: 2.5rem;
  font-size: 0.82rem;
  color: var(--texto-muted);
}

.solucoes-eixo-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* Fade delays para 9 cards */
.projeto-card:nth-child(1) { transition-delay: 0s; }
.projeto-card:nth-child(2) { transition-delay: 0.04s; }
.projeto-card:nth-child(3) { transition-delay: 0.08s; }
.projeto-card:nth-child(4) { transition-delay: 0.12s; }
.projeto-card:nth-child(5) { transition-delay: 0.16s; }
.projeto-card:nth-child(6) { transition-delay: 0.20s; }
.projeto-card:nth-child(7) { transition-delay: 0.24s; }
.projeto-card:nth-child(8) { transition-delay: 0.28s; }
.projeto-card:nth-child(9) { transition-delay: 0.32s; }

/* --- Eixo ------------------------------------------------- */

.eixo {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--fundo) 0%, rgba(10, 21, 32, 0.98) 40%, rgba(14, 27, 43, 0.95) 100%);
}

.eixo-badge {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--azul-tech);
  border: 1px solid var(--azul-tech-linha);
  border-radius: 2px;
  padding: 0.25rem 0.75rem;
  margin-bottom: 1.25rem;
}

.eixo-marca-wrapper {
  margin-bottom: 2.25rem;
  padding-bottom: 0.5rem;
}

.eixo-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: var(--texto);
  margin-bottom: 1.5rem;
  line-height: 1.5;
  padding-left: 1.25rem;
  border-left: 2px solid var(--azul-tech);
}

.btn-eixo-cta {
  padding: 0.85rem 2rem;
  font-size: 0.88rem;
}

.eixo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent,
    transparent 39px,
    rgba(74, 158, 224, 0.03) 39px,
    rgba(74, 158, 224, 0.03) 40px
  );
  pointer-events: none;
}

.eixo-deco {
  position: absolute;
  top: 50%;
  right: -12%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
}

.eixo-deco circle {
  fill: none;
  stroke: rgba(74, 158, 224, 0.06);
}

.eixo-deco .anel-ext {
  animation: orbit 40s linear infinite reverse;
  transform-origin: 50% 50%;
}

.eixo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.eixo-marca-wrapper svg {
  height: 60px;
  width: auto;
}

.eixo-desc {
  margin-bottom: 0;
}

.eixo-modulos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  border: 1px solid var(--azul-tech-linha);
  border-radius: var(--raio);
  overflow: hidden;
  margin-top: 2.5rem;
}

.eixo-modulo {
  padding: 1.25rem 1.5rem;
  background: var(--fundo-card);
  border-right: 1px solid var(--azul-tech-linha);
  border-bottom: 1px solid var(--azul-tech-linha);
  border-left: 2px solid rgba(74, 158, 224, 0.3);
  transition: background var(--transicao), box-shadow var(--transicao);
  position: relative;
}

.eixo-modulo:nth-child(even) {
  border-right: none;
}

.eixo-modulo:nth-child(3),
.eixo-modulo:nth-child(4) {
  border-bottom: none;
}

.eixo-modulo:hover {
  background: var(--fundo-card-alt);
  box-shadow: inset 0 0 20px rgba(74, 158, 224, 0.06);
  border-left-color: rgba(74, 158, 224, 0.7);
}

.eixo-modulo-nome {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--azul-tech);
  margin-bottom: 0.3rem;
  display: block;
}

.eixo-modulo-desc {
  font-size: 0.8rem;
  color: var(--texto-sec);
  margin: 0;
  line-height: 1.5;
}

.eixo-passos {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  margin-top: 0;
}

.eixo-passo {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.passo-num {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 1.4rem;
  color: rgba(74, 158, 224, 0.2);
  line-height: 1;
  flex-shrink: 0;
  width: 2.25rem;
  text-align: right;
}

.passo-content h4 {
  color: var(--texto);
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.passo-content p {
  font-size: 0.875rem;
  margin: 0;
  line-height: 1.7;
}

.eixo-cta {
  margin-top: 3rem;
}

/* --- Processo (accordion) --------------------------------- */

.processo {
  background: var(--fundo-alt);
  border-top: 1px solid var(--linha);
  border-bottom: 1px solid var(--linha);
}

.processo-header {
  text-align: center;
  margin-bottom: 4rem;
}

.processo-header .divider {
  margin: 2rem auto;
}

.processo-lista {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--linha);
  border-radius: var(--raio);
  overflow: hidden;
}

.processo-item {
  border-bottom: 1px solid var(--linha);
  background: var(--fundo-card);
  cursor: pointer;
  transition: background var(--transicao);
}

.processo-item:last-child {
  border-bottom: none;
}

.processo-item:hover {
  background: var(--fundo-card-alt);
}

.processo-item.aberto {
  background: var(--fundo-card-alt);
}

.processo-item-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  user-select: none;
  min-height: 44px;
}

.processo-item-num {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 0.78rem;
  color: var(--dourado);
  opacity: 0.7;
  flex-shrink: 0;
  width: 2rem;
}

.processo-item-titulo {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--texto);
  flex: 1;
}

.processo-item-chevron {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--texto-muted);
  transition: transform var(--transicao), color var(--transicao);
}

.processo-item.aberto .processo-item-chevron {
  transform: rotate(180deg);
  color: var(--dourado);
}

.processo-item-corpo {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease, opacity 0.38s ease;
  opacity: 0;
}

.processo-item.aberto .processo-item-corpo {
  max-height: 220px;
  opacity: 1;
}

.processo-item-corpo-inner {
  padding: 0 2rem 1.75rem 4.5rem;
  font-size: 0.875rem;
  color: var(--texto-sec);
  line-height: 1.8;
}

/* --- Triagem / Wizard ------------------------------------- */

.contacto-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 5rem;
  align-items: start;
}

.contacto-intro {
  margin-bottom: 2rem;
}

.triagem-wrapper {
  position: relative;
}

.wizard-progresso {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.wizard-progresso-bar {
  flex: 1;
  height: 2px;
  background: var(--linha);
  border-radius: 1px;
  overflow: hidden;
}

.wizard-progresso-fill {
  height: 100%;
  background: var(--dourado);
  border-radius: 1px;
  transition: width 0.4s ease;
}

.wizard-progresso-label {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 0.65rem;
  color: var(--texto-muted);
  white-space: nowrap;
}

.wizard-rgpd {
  padding: 2rem;
  border: 1px solid var(--linha);
  border-radius: var(--raio);
  background: var(--fundo-card);
  margin-bottom: 1.5rem;
}

.wizard-rgpd p {
  font-size: 0.82rem;
  margin-bottom: 1rem;
}

.wizard-step {
  display: none;
  animation: step-in 0.3s ease;
}

.wizard-step.ativo {
  display: block;
}

@keyframes step-in {
  from { opacity: 0; transform: translateX(12px); }
  to   { opacity: 1; transform: translateX(0); }
}

.wizard-pergunta {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  color: var(--texto);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.wizard-opcional {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: var(--texto-muted);
  display: block;
  margin-bottom: 1.5rem;
}

.wizard-opcoes {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.wizard-opcao {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--linha);
  border-radius: var(--raio);
  background: var(--fundo-card);
  cursor: pointer;
  transition: all var(--transicao);
  font-size: 0.9rem;
  color: var(--texto-sec);
  text-align: left;
  min-height: 44px;
}

.wizard-opcao:hover {
  border-color: rgba(201, 168, 76, 0.3);
  color: var(--texto);
  background: var(--fundo-card-alt);
}

.wizard-opcao.selecionada {
  border-color: var(--dourado);
  color: var(--texto);
  background: rgba(201, 168, 76, 0.05);
}

.wizard-opcao-check {
  width: 16px;
  height: 16px;
  min-width: 16px;
  border: 1px solid var(--linha-forte);
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transicao);
}

.wizard-opcao.selecionada .wizard-opcao-check {
  background: var(--dourado);
  border-color: var(--dourado);
}

.wizard-opcao.selecionada .wizard-opcao-check::after {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--fundo);
  border-radius: 50%;
}

.wizard-input-group {
  margin-bottom: 1.75rem;
}

.wizard-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.wizard-back {
  font-size: 0.82rem;
  color: var(--texto-muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem 0;
  transition: color var(--transicao);
  min-height: 44px;
}

.wizard-back:hover {
  color: var(--texto-sec);
}

.wizard-resultado {
  display: none;
  animation: step-in 0.4s ease;
}

.wizard-resultado.ativo {
  display: block;
}

.resultado-perfil {
  padding: 2rem;
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: var(--raio);
  background: rgba(201, 168, 76, 0.04);
  margin-bottom: 2rem;
}

.resultado-label {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 0.63rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--dourado);
  display: block;
  margin-bottom: 0.5rem;
}

.resultado-solucao {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--texto);
  margin-bottom: 0.75rem;
}

.resultado-desc {
  font-size: 0.875rem;
  color: var(--texto-sec);
  margin: 0;
}

.resultado-acoes {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.resultado-acoes .btn {
  width: 100%;
  justify-content: center;
}

.resultado-reiniciar {
  text-align: center;
  margin-top: 1rem;
}

.resultado-reiniciar button {
  font-size: 0.78rem;
  color: var(--texto-muted);
  transition: color var(--transicao);
  min-height: 44px;
}

.resultado-reiniciar button:hover {
  color: var(--texto-sec);
}

/* Formulário base */

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--texto-sec);
  margin-bottom: 0.6rem;
}

.form-label-optional {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  color: var(--texto-muted);
  letter-spacing: normal;
  text-transform: none;
  font-weight: 400;
}

.form-input,
.form-textarea {
  width: 100%;
  background: var(--fundo-card);
  border: 1px solid var(--linha);
  border-radius: var(--raio);
  padding: 0.875rem 1.1rem;
  color: var(--texto);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: border-color var(--transicao), box-shadow var(--transicao);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.06);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--texto-muted);
}

.form-input.erro,
.form-textarea.erro {
  border-color: rgba(200, 80, 80, 0.5);
}

.form-textarea {
  min-height: 100px;
  resize: vertical;
  line-height: 1.7;
}

.form-checkbox-group {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.form-checkbox {
  width: 16px;
  height: 16px;
  min-width: 16px;
  border: 1px solid var(--linha-forte);
  border-radius: 2px;
  background: var(--fundo-card);
  cursor: pointer;
  margin-top: 2px;
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  transition: all var(--transicao);
  outline: none;
}

.form-checkbox:focus-visible {
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.2);
}

.form-checkbox:checked {
  background: var(--dourado);
  border-color: var(--dourado);
}

.form-checkbox:checked::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 4px;
  width: 4px;
  height: 8px;
  border: 1.5px solid var(--fundo);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.form-checkbox.erro {
  border-color: rgba(200, 80, 80, 0.6);
}

.form-checkbox-label {
  font-size: 0.8rem;
  color: var(--texto-sec);
  line-height: 1.6;
}

.form-checkbox-label a {
  color: var(--dourado);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(201, 168, 76, 0.4);
  transition: text-decoration-color var(--transicao);
}

.form-checkbox-label a:hover {
  text-decoration-color: var(--dourado);
}

/* Contacto lateral */

.contacto-info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-top: 6rem;
}

.contacto-item-label {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 0.63rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: 0.5rem;
  display: block;
  opacity: 0.8;
}

.contacto-item-value {
  font-size: 1rem;
  color: var(--texto);
  display: block;
}

.contacto-item-desc {
  font-size: 0.82rem;
  color: var(--texto-muted);
  margin-top: 0.25rem;
}

.contacto-email-link {
  color: var(--dourado);
  text-decoration: none;
  transition: color var(--transicao);
  word-break: break-all;
}
.contacto-email-link:hover {
  color: var(--dourado-claro);
  text-decoration: underline;
}

.contacto-gmb-link {
  color: var(--texto);
  text-decoration: none;
  transition: color var(--transicao);
  border-bottom: 1px dotted rgba(201, 168, 76, 0.4);
}
.contacto-gmb-link:hover {
  color: var(--dourado);
  border-bottom-color: var(--dourado);
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--dourado);
  font-size: 0.9rem;
  transition: color var(--transicao);
  min-height: 44px;
}

.whatsapp-link:hover {
  color: var(--dourado-claro);
}

/* --- Rodapé ----------------------------------------------- */

.footer {
  background: var(--fundo-alt);
  border-top: 1px solid var(--linha);
  padding: 5rem 0 2.5rem;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--linha);
  margin-bottom: 2.5rem;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 0.5rem;
}

.footer-brand-logo .nav-logo-symbol {
  width: 44px;
  height: 44px;
}

.footer-brand-logo .nav-logo-text {
  font-size: 1.1rem;
}

.footer-eixo-marca {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(74, 158, 224, 0.12);
  margin-top: 0.5rem;
}

.footer-eixo-marca svg {
  height: 52px;
  width: auto;
}

.footer-eixo-label {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(74, 158, 224, 0.5);
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--texto-sec);
  max-width: 260px;
  line-height: 1.6;
  margin: 0;
}

.footer-col-title {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 0.63rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: 1.5rem;
  display: block;
  opacity: 0.8;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--texto-sec);
  transition: color var(--transicao);
  min-height: 44px;
  display: flex;
  align-items: center;
}

.footer-links a:hover {
  color: var(--texto);
}

.footer-bottom-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--texto-muted);
  margin: 0;
}

.footer-rgpd {
  font-size: 0.75rem;
  color: var(--texto-muted);
  letter-spacing: 0.03em;
}

.footer-company {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.72rem;
  color: var(--texto-muted);
  text-align: center;
}

.footer-sep {
  opacity: 0.4;
}

.footer-gmb-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--texto-muted);
  text-decoration: none;
  transition: color var(--transicao);
}

.footer-gmb-link:hover {
  color: var(--azul-tech);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--texto-sec);
  border: 1px solid rgba(201, 168, 76, 0.2);
  transition: color var(--transicao), border-color var(--transicao);
  text-decoration: none;
}

.footer-social-link:hover {
  color: var(--dourado);
  border-color: var(--dourado);
}

/* --- Livro de Reclamações --------------------------------- */

.livro-reclamacoes-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  text-decoration: none;
  width: fit-content;
  transition: opacity var(--transicao);
  min-height: 44px;
}

.livro-reclamacoes-wrap:hover {
  opacity: 0.8;
}

.livro-reclamacoes-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #CC0000;
  border-radius: 3px;
  flex-shrink: 0;
  overflow: hidden;
}

.livro-reclamacoes-badge svg {
  width: 20px;
  height: 20px;
}

.livro-reclamacoes-texto {
  display: flex;
  flex-direction: column;
}

.livro-reclamacoes-titulo {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--texto-sec);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.livro-reclamacoes-sub {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 0.54rem;
  letter-spacing: 0.08em;
  color: var(--texto-muted);
  text-transform: uppercase;
  line-height: 1.2;
  margin-top: 0.1rem;
}

/* --- Banner de Cookies ------------------------------------ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--fundo-card-alt);
  border-top: 1px solid var(--linha);
  padding: 1.25rem 0;
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.visivel {
  transform: translateY(0);
}

.cookie-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: var(--max-largura);
  margin: 0 auto;
  padding: 0 2rem;
}

.cookie-texto {
  flex: 1;
  min-width: 280px;
  font-size: 0.855rem;
  color: var(--texto-sec);
  margin: 0;
}

.cookie-texto a {
  color: var(--dourado);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(201, 168, 76, 0.4);
}

.cookie-texto a:hover {
  text-decoration-color: var(--dourado);
}

.cookie-acoes {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* --- WhatsApp Flutuante ----------------------------------- */

.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 150;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--fundo-card);
  border: 1px solid var(--linha);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dourado);
  transition: all var(--transicao);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.whatsapp-float:hover {
  border-color: var(--linha-forte);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
}

/* --- Animações -------------------------------------------- */

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.visivel {
  opacity: 1;
  transform: translateY(0);
}

.manifesto-card:nth-child(1).fade-up { transition-delay: 0s; }
.manifesto-card:nth-child(2).fade-up { transition-delay: 0.08s; }
.manifesto-card:nth-child(3).fade-up { transition-delay: 0.16s; }

.retainer-card:nth-child(1) { transition-delay: 0s; }
.retainer-card:nth-child(2) { transition-delay: 0.08s; }
.retainer-card:nth-child(3) { transition-delay: 0.16s; }

.ia-card:nth-child(1).fade-up { transition-delay: 0s; }
.ia-card:nth-child(2).fade-up { transition-delay: 0.08s; }
.ia-card:nth-child(3).fade-up { transition-delay: 0.16s; }

/* --- Responsivo ------------------------------------------- */

@media (max-width: 1024px) {
  .sobre-grid      { gap: 4rem; }
  .manifesto-grid  { gap: 4rem; }
  .eixo-grid       { gap: 4rem; }
  .contacto-grid   { gap: 3rem; }

  .projetos-grid   { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .retainers-grid  { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .solucoes-header { grid-template-columns: 1fr; gap: 2rem; }
  .folder-anim     { display: none; }

  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .ia-beneficios-grid { grid-template-columns: 1fr; }
  .ia-card { border-right: none; border-bottom: 1px solid var(--linha); }
  .ia-card:last-child { border-bottom: none; }

  .hero-simbolo { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }

  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .manifesto-grid  { grid-template-columns: 1fr; }
  .sobre-grid      { grid-template-columns: 1fr; gap: 3.5rem; }
  .eixo-grid       { grid-template-columns: 1fr; gap: 3.5rem; }
  .contacto-grid   { grid-template-columns: 1fr; gap: 3rem; }

  .projetos-grid   { grid-template-columns: 1fr; }
  .retainers-grid  { grid-template-columns: 1fr; }
  .eixo-modulos    { grid-template-columns: 1fr; }

  .valores-grid    { grid-template-columns: 1fr; }
  .valor-item:nth-child(even) { border-right: none; }
  .valor-item:nth-child(5) { grid-column: auto; }

  .footer-main { grid-template-columns: 1fr; gap: 2.5rem; }

  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-stats   { gap: 1.5rem; }

  .contacto-info { padding-top: 0; }

  .ia-stat-item + .ia-stat-item::before { display: none; }

  .wizard-opcoes { gap: 0.5rem; }
  .processo-lista { margin: 0; }

  .projeto-card  { padding: 1.5rem; }
  .retainer-card { padding: 1.75rem 1.5rem; }
  .popular-badge  { font-size: 0.6rem; }
  .solucoes-eixo-cta { margin-top: 2rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }

  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .cookie-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }

  .hero-stats { flex-direction: column; gap: 1rem; }
  .hero-actions .btn { width: 100%; text-align: center; justify-content: center; }

  .section { padding: 60px 0; }

  .projeto-card  { padding: 1.25rem; }
  .retainer-card { padding: 1.5rem 1.25rem; }

  .footer-company { font-size: 0.65rem; flex-wrap: wrap; gap: 0.25rem; }
  .footer-sep     { display: none; }
  .footer-company span,
  .footer-company a { display: block; }

  .nav-logo-symbol { width: 40px; height: 40px; }
  .nav-logo-text { font-size: 1rem; }
  .nav-logo-tagline { font-size: 0.46rem; letter-spacing: 0.1em; }
  .nav { padding: 1rem 0; }
  .mobile-nav a { font-size: 1.5rem; }

  h1 { font-size: clamp(1.5rem, 6vw, 2.5rem); }
  .hero-desc { font-size: 0.95rem; }
  .hero-stat-valor { font-size: 1.2rem; }
  .hero-stat-desc { font-size: 0.82rem; }
  .section-label { font-size: 0.7rem; }

  .ia-card { padding: 1.5rem 1.25rem; }
  .ia-card h3 { font-size: 1rem; }
  .ia-stat-num { font-size: 1rem; }
  .ia-stat-label { font-size: 0.78rem; }

  .processo-item-header { padding: 1rem 1.25rem; gap: 1rem; }
  .processo-item-titulo { font-size: 0.9rem; }
  .processo-item-corpo-inner { padding: 0 1.25rem 1.5rem 2rem; font-size: 0.82rem; }

  .projeto-tag { font-size: 0.65rem; }
  .projeto-prazo { font-size: 0.78rem; }
  .projeto-nome { font-size: 0.9rem; }
  .projeto-desc { font-size: 0.8rem; }
  .projeto-items li { font-size: 0.8rem; }

  .popular-badge { font-size: 0.65rem; }
  .retainer-tier { font-size: clamp(1.2rem, 4vw, 1.7rem); }
  .retainer-items li { font-size: 0.8rem; }

  .eixo-tagline { font-size: clamp(1rem, 4vw, 1.35rem); }
  .eixo-modulo { padding: 1rem 1.25rem; }
  .eixo-modulo-nome { font-size: 0.7rem; }

  .wizard-progresso-label { font-size: 0.72rem; }
  .wizard-rgpd { padding: 1.5rem; }
  .wizard-pergunta { font-size: 1rem; }
  .form-label { font-size: 0.72rem; }
  .form-input { font-size: 0.85rem; padding: 0.75rem 1rem; }
  .wizard-opcao { padding: 0.75rem 1rem; font-size: 0.85rem; }
  .contacto-item-label { font-size: 0.72rem; }

  .fundador-card { padding: 1.25rem; }
  .valor-item { padding: 1rem; }

  .footer-main { padding-bottom: 2rem; }
  .footer-col-title { font-size: 0.72rem; }

  h1, h2, h3, .retainer-tier, .eixo-tagline, .wizard-pergunta {
    word-break: break-word;
    hyphens: auto;
  }
}

@media (max-width: 360px) {
  .container { padding: 0 1rem; }

  .nav-inner { padding: 0 1rem; }
  .nav-logo-text { font-size: 0.9rem; letter-spacing: 0.15em; }
  .nav-logo-tagline { display: none; }

  h1 { font-size: clamp(1.4rem, 7vw, 2rem); }
  h2 { font-size: clamp(1.3rem, 6vw, 1.8rem); }

  .btn { padding: 0.75rem 1.25rem; font-size: 0.82rem; }

  .hero { padding: 120px 0 80px; }
  .section { padding: 50px 0; }

  .projetos-grid { grid-template-columns: 1fr; gap: 1rem; }
  .retainers-grid { grid-template-columns: 1fr; gap: 1rem; }
  .valores-grid { grid-template-columns: 1fr; }

  .projeto-card { padding: 1rem; }
  .retainer-card { padding: 1.25rem 1rem; }

  .processo-item-header { padding: 0.875rem 1rem; }
  .processo-item-corpo-inner { padding: 0 1rem 1.25rem 1.5rem; }

  .wizard-rgpd { padding: 1.25rem; }
  .wizard-opcao { padding: 0.75rem; font-size: 0.82rem; }

  .footer-main { gap: 2rem; }
  .footer-links a { font-size: 0.82rem; }
}
