/* ============================================================
   Estilos específicos do Bicho Rural
   Identidade visual: verde (#15803d) — mesma do título na home.
   Header e rodapé continuam usando o iris padrão (compartilhados).
============================================================ */

/* ─── Stats strip — números em verde ─── */
.projeto-hero ~ section .projeto-stat-valor,
.projeto-stat-valor {
  background: linear-gradient(95deg, #0f5e25 0%, #15803d 40%, #16a34a 70%, #65d97d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ─── Ficha técnica — números pequenos em verde ─── */
.projeto-ficha-bloco-numero {
  color: #15803d;
}

/* ─── Hero glow — tom verde/amarelo discreto (logo da marca) ─── */
.projeto-hero-glow {
  background: radial-gradient(
    circle,
    rgba(34, 197, 94, 0.22) 0%,
    rgba(132, 204, 22, 0.14) 40%,
    rgba(251, 191, 36, 0.1) 60%,
    transparent 75%
  );
}

/* ─── Capa da galeria — foto de árvores borrada como fundo ─── */
.projeto-hero-capa-mockup {
  position: relative;
  overflow: hidden;
  background: #f0f0f0;
}
.projeto-hero-capa-mockup::before {
  content: "";
  position: absolute;
  inset: -3rem;
  background:
    url("https://conceito.de/wp-content/uploads/2022/07/trees-2900064_1280.jpg")
      center / cover no-repeat;
  filter: blur(4px);
  z-index: 0;
}
.projeto-hero-capa-mockup > * {
  position: relative;
  z-index: 1;
}

/* ─── Próximo projeto — mantém o iris (transição genérica pra outro projeto) ─── */

/* ─── Link "visitar site" hover em verde também ─── */
.projeto-ficha-links a:hover svg {
  color: #15803d;
}

/* ─── Títulos das seções "O contexto" e "O que constrói diferença" em verde ─── */
.projeto-bloco-titulo {
  color: #15803d;
}

/* ─── /ficha técnica como pílula verde com texto branco ─── */
.projeto-ficha-cabecalho .legenda-mono:first-child {
  background: #15803d;
  color: #ffffff;
  padding: 0.25rem 0.625rem;
  border-radius: 6px;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* ─── Título "Bicho Rural" em verde com chapéu sobre o "B" ─── */
.titulo-bichorural {
  color: #15803d;
  margin-top: 1.75rem; /* espaço pro chapéu não cortar em cima */
}
.titulo-bichorural-wrap {
  position: relative;
  display: inline-block;
}
.titulo-bichorural-chapeu {
  position: absolute;
  top: -28%;       /* mais perto do título, não tão alto */
  left: -3%;       /* encostado no "B" */
  width: 13%;      /* proporcional ao título */
  transform: rotate(-8deg);
  filter:
    drop-shadow(0 5px 8px rgba(217, 119, 6, 0.32))
    drop-shadow(0 2px 4px rgba(10, 10, 11, 0.18));
  pointer-events: none;
  z-index: 2;
}

/* ─── Números 01-04 dos destaques em preto ─── */
.projeto-destaques-lista li::before {
  color: var(--foreground);
}
