/* ==========================================================
   PROJETO S.I.R.I. — estilos complementares ao Tailwind
   ========================================================== */

:root {
  --ink: #0a0a0a;
  --bone: #f5f5f3;
  --line: rgba(245, 245, 243, 0.22);
}

#servicos, #projetos, #impacto, #incentivados, #projetos-siri, #parceiros, #contato, #sobre {
  scroll-margin-top: 5.5rem;
}

* {
  scroll-behavior: smooth;
}

body {
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}

/* ---------- Navbar links ---------- */
.nav-link {
  position: relative;
  padding-bottom: 4px;
  transition: color .25s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0%;
  background: var(--bone);
  transition: width .3s ease;
}
.nav-link:hover {
  color: var(--bone);
}
.nav-link:hover::after {
  width: 100%;
}

.nav-link-mobile {
  color: rgba(245,245,243,0.8);
  transition: color .2s ease, padding-left .2s ease;
}
.nav-link-mobile:hover {
  color: var(--bone);
  padding-left: 6px;
}

/* Hamburger animation */
#menu-toggle.is-open .hamburger-bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
#menu-toggle.is-open .hamburger-bar:nth-child(2) {
  opacity: 0;
}
#menu-toggle.is-open .hamburger-bar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}
.hamburger-bar {
  transition: transform .3s ease, opacity .2s ease;
}

/* ---------- Hero buttons ---------- */
.hero-btn {
  border: 1px solid rgba(245,245,243,0.7);
  padding: 0.9rem 1.9rem;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background-color .3s ease, color .3s ease, border-color .3s ease;
}
.hero-btn:hover {
  background-color: var(--bone);
  color: var(--ink);
}

/* ---------- Reveal animation on load ---------- */
@keyframes revealUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal-up {
  animation: revealUp .9s cubic-bezier(.22,.61,.36,1) both;
}

@keyframes bounceSlow {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(5px); }
}
.animate-bounce-slow {
  animation: bounceSlow 2.2s ease-in-out infinite;
}

/* ---------- S.I.R.I. grid columns ---------- */
.siri-col {
  padding: 2.1rem 1.5rem;
  text-align: center;
  border-right: 1px solid var(--line);
  border-top: 1px solid var(--line);
}
.siri-col:nth-child(2n) {
  border-right: 1px solid var(--line);
}
@media (min-width: 768px) {
  .siri-col-last,
  .siri-col:nth-child(4) {
    border-right: none;
  }
}
@media (max-width: 767px) {
  .siri-col:nth-child(2n) {
    border-right: none;
  }
}

.siri-letter {
  display: block;
  font-family: 'Archivo Expanded', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1;
  color: var(--bone);
}
.siri-title {
  margin-top: 0.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
  display: inline-block;
  padding-bottom: 0.7rem;
}
.siri-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 1px;
  background: rgba(245,245,243,0.5);
}
.siri-desc {
  margin-top: 0.8rem;
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(245,245,243,0.65);
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Partners marquee (auto-scroll) ---------- */
.marquee-viewport {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 6%, black 94%, transparent 100%);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-viewport:hover .marquee-track {
  animation-play-state: paused;
}

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

.partner-logo {
  flex-shrink: 0;
  font-family: 'Archivo Expanded', sans-serif;
  font-weight: 700;
  font-size: clamp(0.85rem, 1.4vw, 1.15rem);
  letter-spacing: 0.03em;
  color: rgba(245,245,243,0.85);
  white-space: nowrap;
  opacity: 0.85;
  transition: opacity .25s ease;
  user-select: none;
}
.partner-logo:hover {
  opacity: 1;
}
.partner-divider {
  flex-shrink: 0;
  width: 1px;
  height: 1.4rem;
  background: rgba(245,245,243,0.25);
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .reveal-up, .animate-bounce-slow, .marquee-track {
    animation: none !important;
    transition: none !important;
  }
}

/* ---------- Seção Serviços ---------- */
.service-card2 {
  position: relative;
  background-color: rgba(245, 245, 243, 0.03);
  border: 1px solid var(--line);
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-body {
  padding: 1.6rem 1.5rem 1.4rem;
}

.service-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 245, 243, 0.5);
  margin-bottom: 0.6rem;
}

.service-title2 {
  font-family: 'Archivo Expanded', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  line-height: 1.12;
  margin-bottom: 0.8rem;
}

.service-divider {
  width: 2rem;
  height: 2px;
  background-color: #eeb23c;
  margin-bottom: 1rem;
}

.service-text2 {
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(245, 245, 243, 0.65);
}

.service-btn-group {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 0 1.5rem 1.6rem;
}

.card-btn {
  border: 1px solid rgba(245, 245, 243, 0.6);
  border-radius: 0.2rem;
  padding: 0.65rem 1rem;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}
.card-btn:hover {
  background-color: var(--bone);
  color: var(--ink);
}

/* ---------- Seção Impacto ---------- */
.impact-stat {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
}

.impact-plus {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  background-color: var(--ink);
  color: var(--bone);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
}

.impact-number {
  font-family: 'Archivo Expanded', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  line-height: 1.05;
  margin-bottom: 0.35rem;
}

.impact-caption {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.impact-subcaption {
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: rgba(10, 10, 10, 0.55);
  margin-top: 0.15rem;
}

/* ---------- Back-to-top arrow (reutilizado entre seções claras) ---------- */
.back-to-top {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  border: 1px solid rgba(10, 10, 10, 0.3);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}
.back-to-top:hover {
  background-color: var(--ink);
  color: var(--bone);
  border-color: var(--ink);
}
.back-to-top:not(.back-to-top--inline) {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
}

/* ---------- Placeholder de logo (Impacto) ---------- */
.logo-placeholder {
  width: 14rem;
  height: 14rem;
  border-radius: 9999px;
  border: 2px dashed rgba(10, 10, 10, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-align: center;
  color: rgba(10, 10, 10, 0.45);
}
.logo-placeholder span:first-child {
  font-family: 'Archivo Expanded', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
}
.logo-placeholder span:last-child {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .logo-placeholder {
    width: 18rem;
    height: 18rem;
  }
}

/* ---------- Formulário de Contato ---------- */
.contact-panel {
  border: 1px solid rgba(245, 245, 243, 0.18);
  border-radius: 1.25rem;
  background-color: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 2.2rem 1.8rem;
}
@media (min-width: 768px) {
  .contact-panel {
    padding: 2.6rem 2.4rem;
  }
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.contact-field label {
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 245, 243, 0.6);
}
.contact-field input,
.contact-field textarea {
  background: rgba(245, 245, 243, 0.04);
  border: 1px solid rgba(245, 245, 243, 0.25);
  border-radius: 0.4rem;
  color: var(--bone);
  font-size: 0.88rem;
  padding: 0.7rem 0.85rem;
  font-family: inherit;
  resize: none;
  transition: border-color .25s ease, background-color .25s ease;
}
.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(245, 245, 243, 0.35);
}
.contact-field input:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: #eeb23c;
  background-color: rgba(245, 245, 243, 0.06);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  width: fit-content;
}
.contact-info-icon {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(245, 245, 243, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s ease, background-color .2s ease;
}
a.contact-info-item:hover .contact-info-icon {
  border-color: rgba(245, 245, 243, 0.7);
  background-color: rgba(245, 245, 243, 0.06);
}
.contact-info-label {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 245, 243, 0.55);
  margin-bottom: 0.2rem;
}
.contact-info-value {
  display: block;
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(245, 245, 243, 0.9);
}

/* ---------- Botão de destaque (accent) ---------- */
.hero-btn--accent {
  border-color: rgba(238, 178, 60, 0.8);
  color: #eeb23c;
}
.hero-btn--accent:hover {
  background-color: #eeb23c;
  border-color: #eeb23c;
  color: var(--ink);
}

/* ---------- Como funciona ---------- */
.how-step {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
}
.how-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  border: 1px solid rgba(245, 245, 243, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}
.how-title {
  font-family: 'Archivo Expanded', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}
.how-text {
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(245, 245, 243, 0.65);
}

/* ---------- Benefícios ---------- */
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}
.benefit-item p {
  font-size: 0.75rem;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: rgba(245, 245, 243, 0.8);
}

/* ---------- Portfólio ---------- */
.portfolio-card {
  background-color: rgba(245, 245, 243, 0.03);
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.portfolio-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.portfolio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.portfolio-card:hover .portfolio-img img {
  transform: scale(1.05);
}

.portfolio-body {
  position: relative;
  padding: 1.4rem 1.5rem 1.6rem;
}

.portfolio-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(245, 245, 243, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
}

.portfolio-title {
  font-family: 'Archivo Expanded', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}

.portfolio-text {
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(245, 245, 243, 0.6);
  max-width: 85%;
}

.portfolio-arrow {
  position: absolute;
  right: 1.4rem;
  bottom: 1.5rem;
  width: 1rem;
  height: 1rem;
  color: #eeb23c;
}

/* ---------- Parceiros de Transformação ---------- */
.partner-card {
  flex-shrink: 0;
  width: 15rem;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  padding: 2.2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Archivo Expanded', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: rgba(245, 245, 243, 0.85);
  min-height: 7rem;
  transition: border-color .25s ease, background-color .25s ease;
}
.partner-card:hover {
  border-color: rgba(245, 245, 243, 0.5);
  background-color: rgba(245, 245, 243, 0.03);
}

#parceiros .marquee-track {
  gap: 1.25rem;
  animation-duration: 44s;
}
#parceiros .marquee-track--reverse {
  animation-direction: reverse;
}
#parceiros .marquee-viewport:hover .marquee-track {
  animation-play-state: paused;
}

.logo-placeholder--seal {
  width: 60%;
  height: 60%;
  border-color: rgba(245, 245, 243, 0.5);
  color: rgba(245, 245, 243, 0.75);
}

/* ---------- Valores (Sobre — bloco 3) ---------- */
.value-item {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.value-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  border: 1px solid rgba(245, 245, 243, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-title {
  font-family: 'Archivo Expanded', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
}
.value-text {
  font-size: 0.8rem;
  line-height: 1.55;
  color: rgba(245, 245, 243, 0.6);
}

/* ---------- Impacto: barra de estatísticas ---------- */
.impact-stats-bar {
  background-color: rgba(245, 245, 243, 0.03);
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 2.4rem 2rem;
}
@media (min-width: 768px) {
  .impact-stats-bar {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
}
.impact-stat-col {
  padding: 0 1.6rem;
}
.impact-stat-col:first-child {
  padding-left: 0;
}
@media (min-width: 768px) {
  .impact-stat-col {
    border-left: 1px solid var(--line);
  }
  .impact-stat-col:first-child {
    border-left: none;
  }
}
.impact-stat-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  border: 1px solid rgba(245, 245, 243, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}
.impact-stat-number {
  font-family: 'Archivo Expanded', sans-serif;
  font-weight: 800;
  font-size: clamp(1.7rem, 2.6vw, 2.1rem);
  line-height: 1;
  margin-bottom: 0.6rem;
}
.impact-stat-number span {
  font-size: 0.9rem;
  font-weight: 700;
  margin-left: 0.15rem;
}
.impact-stat-label {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.6rem;
}
.impact-stat-text {
  font-size: 0.78rem;
  line-height: 1.55;
  color: rgba(245, 245, 243, 0.55);
}

/* ---------- Onde atuamos (mapas) ---------- */
.map-legend {
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  padding: 1.3rem 1.4rem;
}
.map-legend-title {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 245, 243, 0.5);
  margin-bottom: 0.9rem;
}
.map-legend-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.78rem;
  color: rgba(245, 245, 243, 0.8);
  margin-bottom: 0.75rem;
}
.map-legend-item:last-child {
  margin-bottom: 0;
}
.map-legend-icon {
  flex-shrink: 0;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 9999px;
  border: 1px solid rgba(245, 245, 243, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-legend-icon--gold { color: #eeb23c; border-color: rgba(238,178,60,0.5); }
.map-legend-icon--green { color: #6fae7c; border-color: rgba(111,174,124,0.5); }
.map-legend-icon--purple { color: #a78bfa; border-color: rgba(167,139,250,0.5); }

.map-panel {
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.4rem 1.5rem 1.6rem;
  background-color: rgba(245, 245, 243, 0.02);
}
.map-panel-title {
  font-family: 'Archivo Expanded', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.05rem;
}
.map-panel-text {
  font-size: 0.78rem;
  line-height: 1.55;
  color: rgba(245, 245, 243, 0.6);
}

.map-svg-wrap {
  position: relative;
}
.map-svg-wrap--circle {
  max-width: 340px;
  margin: 1rem auto 0;
}

.map-image-placeholder {
  aspect-ratio: 4 / 5;
  border: 2px dashed rgba(245, 245, 243, 0.3);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.4rem;
  color: rgba(245, 245, 243, 0.45);
  padding: 1.5rem;
}
.map-image-placeholder span:first-child {
  font-family: 'Archivo Expanded', sans-serif;
  font-weight: 800;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  text-transform: uppercase;
}
.map-image-placeholder span:last-child {
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  max-width: 14rem;
}
.map-image-placeholder--sp {
  aspect-ratio: 1 / 1;
  border: none;
  background-color: rgba(245, 245, 243, 0.07);
  box-shadow: inset 0 0 0 2px rgba(245, 245, 243, 0.25);
  clip-path: polygon(32% 4%, 55% 0%, 72% 10%, 88% 24%, 97% 42%, 94% 58%, 82% 68%, 78% 84%, 62% 96%, 46% 92%, 38% 78%, 22% 74%, 8% 60%, 6% 40%, 16% 22%, 26% 14%);
}

.map-pin {
  position: absolute;
  transform: translate(-50%, -100%);
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 9999px 9999px 9999px 0;
  transform-origin: bottom left;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}
.map-pin--purple { background-color: #7c3aed; }
.map-pin--gold { background-color: #eeb23c; color: #1a1200; }
.map-pin--green { background-color: #3f7e44; }

.map-flag {
  position: absolute;
  transform: translate(-50%, -100%);
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 0.3rem;
  background-color: var(--bone);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.map-callout {
  position: absolute;
  max-width: 9.5rem;
}
.map-callout-title {
  font-family: 'Archivo Expanded', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.62rem;
  letter-spacing: 0.02em;
  color: var(--bone);
  margin-bottom: 0.15rem;
}
.map-callout-text {
  font-size: 0.6rem;
  line-height: 1.3;
  color: rgba(245, 245, 243, 0.55);
}

.onde-box {
  border-top: 1px solid var(--line);
  padding-top: 2rem;
}
.onde-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.onde-pin {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background-color: #7c3aed;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.onde-title {
  font-family: 'Archivo Expanded', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
}
.onde-text {
  font-size: 0.75rem;
  line-height: 1.4;
  color: rgba(245, 245, 243, 0.55);
}

.map-note {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px dashed rgba(245, 245, 243, 0.3);
  border-radius: 0.7rem;
  padding: 1rem 1.2rem;
  font-size: 0.75rem;
  line-height: 1.4;
  color: rgba(245, 245, 243, 0.6);
  max-width: 28rem;
}

/* ---------- ODS 12 ---------- */
.ods-badge {
  flex-shrink: 0;
  width: 6.5rem;
  height: 6.5rem;
  border-radius: 0.6rem;
  background-color: #cf8d2a;
  color: #0a0a0a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.6rem;
}
.ods-badge-number {
  font-family: 'Archivo Expanded', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  line-height: 1;
}
.ods-badge-label {
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.15;
  margin-top: 0.35rem;
}

/* ---------- ODS cards (Impacto) ---------- */
.ods-card {
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  padding: 1.4rem 1.3rem;
  background-color: rgba(245, 245, 243, 0.02);
}
.ods-card-badge {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 0.6rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.4rem;
  margin-bottom: 1rem;
}
.ods-card-number {
  font-family: 'Archivo Expanded', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1;
}
.ods-card-label {
  font-size: 0.42rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.2;
  margin-top: 0.3rem;
}
.ods-card-text {
  font-size: 0.76rem;
  line-height: 1.55;
  color: rgba(245, 245, 243, 0.6);
}

.ods-mini {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.ods-mini-icon {
  flex-shrink: 0;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 0.3rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ods-mini-label {
  font-size: 0.7rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(245, 245, 243, 0.75);
  line-height: 1.3;
}

/* ---------- Do resíduo à transformação ---------- */
.step-card {
  flex: 1;
  min-width: 0;
}
.step-img {
  aspect-ratio: 1 / 1;
  border-radius: 0.85rem;
  overflow: hidden;
  margin-bottom: 1rem;
}
.step-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.step-number {
  font-family: 'Archivo Expanded', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  color: rgba(245, 245, 243, 0.4);
  margin-bottom: 0.35rem;
}
.step-title {
  font-family: 'Archivo Expanded', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}
.step-text {
  font-size: 0.76rem;
  line-height: 1.5;
  color: rgba(245, 245, 243, 0.55);
}
.step-arrow {
  display: none;
  align-items: center;
  justify-content: center;
  color: rgba(245, 245, 243, 0.3);
  flex-shrink: 0;
  padding-top: 2.5rem;
}
@media (min-width: 768px) {
  .step-arrow {
    display: flex;
  }
}

/* ---------- Página standalone: link "voltar" e fatos rápidos ---------- */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 245, 243, 0.65);
  transition: color .2s ease;
}
.back-link:hover {
  color: var(--bone);
}

.mundo-fact {
  border-left: 1px solid var(--line);
  padding-left: 1.1rem;
}
.mundo-fact-label {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 245, 243, 0.5);
  margin-bottom: 0.4rem;
}
.mundo-fact-value {
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(245, 245, 243, 0.85);
}

/* ---------- Página "O S.I.R.I." — pilares ---------- */
.pillar-card {
  display: flex;
  flex-direction: column;
}
.pillar-img {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 1rem;
}
.pillar-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pillar-letter {
  position: absolute;
  top: 0.6rem;
  left: 0.8rem;
  font-family: 'Archivo Expanded', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--bone);
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.pillar-title {
  font-family: 'Archivo Expanded', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}
.pillar-text {
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(245, 245, 243, 0.6);
}

/* ---------- Nossa metodologia ---------- */
.method-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  min-width: 6.5rem;
}
.method-icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 9999px;
  border: 1px solid rgba(245, 245, 243, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}
.method-label {
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(245, 245, 243, 0.75);
}
.method-arrow {
  width: 1rem;
  height: 1rem;
  color: rgba(245, 245, 243, 0.3);
  transform: rotate(90deg);
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .method-arrow {
    transform: none;
  }
}

/* ---------- Rodapé ---------- */
.footer-social {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  border: 1px solid rgba(245, 245, 243, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 245, 243, 0.7);
  transition: color .2s ease, border-color .2s ease;
}
.footer-social:hover {
  color: var(--bone);
  border-color: rgba(245, 245, 243, 0.6);
}

/* ---------- Galeria (Premiações) ---------- */
.gallery-item {
  border-radius: 0.85rem;
  overflow: hidden;
  background-color: rgba(245, 245, 243, 0.03);
  border: 1px solid var(--line);
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.gallery-caption {
  padding: 0.9rem 1.1rem;
}
.gallery-title {
  font-family: 'Archivo Expanded', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.25rem;
}
.gallery-meta {
  font-size: 0.72rem;
  color: rgba(245, 245, 243, 0.55);
}

/* ---------- Focus visibility ---------- */
a:focus-visible,
button:focus-visible {
  outline: 1px solid var(--bone);
  outline-offset: 3px;
}
