﻿/* =========================
   VARIÃVEIS (compatÃ­vel com --amber-* e --cor-*)
   ========================= */

:root{
  /* Paleta â€œnovaâ€ (page) */
  --amber-100:#E9E5D6;
  --amber-400:#C4AC64;
  --teal-900:#0E4656;
  --bora-deep:#062723;
  --bora-mid:#0b3a33;
  --bora-ink:#041c19;
  --bora-lime:#5df06b;
  --bora-lime-strong:#37e45c;
  --white:#ffffff;
  --gray-50:#F2F3F2;
  --gray-200:#C7C7C7;
  --text:#18333a;

  /* Aliases p/ NÃƒO quebrar menu/footer se usarem --cor-* */ 
  --cor-Amber100: var(--amber-100);
  --cor-Amber400: var(--amber-400);
  --cor-Skyblue800: var(--teal-900);
  --cor-White: var(--white);
  --cor-Gray50: var(--gray-50);
  --cor-Gray200: var(--gray-200);

  /* Tokens */
  --radius-12: 12px;
  --radius-16: 16px;
  --radius-20: 20px;

  --shadow-1: 0 10px 26px rgba(0,0,0,.06);
  --shadow-2: 0 18px 44px rgba(0,0,0,.12);

  --border-1: 1px solid rgba(0,0,0,.08);
  --border-2: 1px solid rgba(0,0,0,.12);
}

/* =========================
   BASE
   ========================= */

* {
    margin: 0;
    padding: 0;
    font-family: "VersosTest", sans-serif;
    font-weight: 400;
}

body{
  margin:0;
  color: var(--text);
  background: var(--white);
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}


/* =========================
   HOME (index.html)
   ========================= */

header.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 56px 0 40px;
  background: #ffffff;
}

header.hero .bg {
  background-image: url("../img/bg-header.png");
  background-size: contain;
  background-repeat: no-repeat;
  min-height: 650px;
}

.hero .row {
  align-items: stretch;
}

.hero .col-lg-6 {
  display: flex;
}

.hero .col-lg-6:first-child {
  flex-direction: column;
  align-items: center;
}

.hero .col-lg-6:last-child {
  align-items: center;
  justify-content: center;
}

.hero-banner {
  margin-top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 500px;
}

.hero-banner img {
  width: 100%;
  max-width: 520px;
  height: auto;
  filter: blur(0.2px);
  opacity: 0.85;
}

.hero .box {
  margin-top: 121px;
  padding: 64px 50px;
  background: #0b0b0b;
  color: #ffffff;
  border-radius: 2px;
}

.hero .box strong {
  display: block;
  font-family: "VersosTest", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.9);
}

.hero .box h1 {
  font-size: 35px;
  line-height: 1.25;
  font-family: "VersosTest", sans-serif;
  font-weight: 800;
  margin: 0;
  color: #ffffff;
}

/* =========================
   SECTION PAPER (Nosso propÃ³sito)
   ========================= */

.section.section-paper {
  padding: 72px 0 56px;
  background: #ffffff;
}

.section.section-paper .row {
  align-items: center;
}

.section.section-paper .col-lg-6 {
  text-align: left;
}

.section.section-paper .text-box {
  align-items: center;
}

.col-lg-6.center {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.section.section-paper h2 {
  font-size: 34px;
  line-height: 1.15;
  font-family: "VersosTest", sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: #000000;
}

.section.section-paper strong {
  display: block;
  font-size: 20px;
  line-height: 1.35;
  font-family: "VersosTest", sans-serif;
  font-weight: 600;
  max-width: 360px;
  color: #111111;
}

.section.section-paper p {
  font-size: 20px;
  line-height: 1.5;
  color: #222222;
  margin-bottom: 18px;
  max-width: 360px;
  font-family: "VersosTest", sans-serif;
  font-weight: 400;
}

.section.section-paper p:last-child {
  margin-bottom: 0;
}

img[src*="foto01.png"] {
  margin-top: 105px;
  width: 100%;
}

/* =========================
   BOX NUMEROS
   ========================= */

.box-numeros {
  margin-top: 32px;
  background: #0a0a0a;
  color: #ffffff;
  padding: 40px 32px;
}

.box-foto {
  margin-top: 8px;
}

.box-foto img {
  width: 100%;
}

.box-foto .row {
  --bs-gutter-x: 8px;
  --bs-gutter-y: 8px;
}

.numero-item {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 28px;
  align-items: center;
  padding: 22px 40px;
  border-bottom: 4px solid rgba(255, 255, 255, 0.8);
}

.numero-item:first-child {
  padding-top: 0;
}

.numero-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.numero-valor {
  font-size: 36px;
  font-family: "VersosTest", sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.numero-texto {
  font-size: 20px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.95);
  font-family: "VersosTest", sans-serif;
  font-weight: 400;
}

@media (max-width: 768px) {
  .numero-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .numero-valor {
    font-size: 30px;
  }
}

/* =========================
   CONHECA (cards)
   ========================= */

.conheca {
  padding: 64px 0 72px;
  background: #ffffff;
}

.conheca span {
  display: block;
  font-size: 17px;
  color: #444444;
  margin-bottom: 10px;
  font-family: "VersosTest", sans-serif;
  font-weight: 400;
}

.conheca h3 {
  font-size: 30px;
  line-height: 1.35;
  font-family: "VersosTest", sans-serif;
  font-weight: 800;
  color: #111111;
  margin: 0;
}

.conheca h3 + h3 {
  margin-bottom: 28px;
}

.conheca .col-lg-12 {
  display: block;
}

.box-conheca-eg {
  padding: 0 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.box-conheca-eg > span,
.box-conheca-eg > h3 {
  width: 100%;
}

.box-conheca-eg .paper-card {
  width: calc(20% - 25px);
  min-width: 140px;
  border: 2px solid #2b2b2b;
  border-radius: 14px;
  padding: 16px 10px 14px;
  text-align: center;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.box-conheca-eg .paper-card img {
  width: auto;
  height: auto;
  max-width: 100%;
}

.box-conheca-eg .paper-card p {
  margin: 0;
  margin-top: auto;
  font-size: 20px;
  font-family: "VersosTest", sans-serif;
  font-weight: 600;
  line-height: 1.25;
  color: #222222;
}

@media (max-width: 992px) {
  .box-conheca-eg .paper-card {
    width: calc(33.333% - 16px);
  }
}

@media (max-width: 640px) {
  .box-conheca-eg .paper-card {
    width: calc(50% - 16px);
  }
}

/* =========================
   EMPRESAS (cards expand)
   ========================= */

.empresas {
  margin-top: 8px;
  display: grid;
  gap: 8px;
}

.empresa-card {
  max-height: 308px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: max-height 0.35s ease;
}

.empresa-card > a {
  display: block;
  cursor: pointer;
}

.empresa-card img {
  width: 100%;
  height: auto;
  display: block;
}

.empresa-cont {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 60px 55px;
}

.empresa-cont h3 {
  margin: 0 0 32px 0;
  font-size: 40px;
  line-height: 1.25;
  font-family: "VersosTest", sans-serif;
  font-weight: 800;
  color: #111111;
}

.empresa-cont a {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid #111111;
  border-radius: 10px;
  color: #111111;
  font-weight: 600;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.empresa-cont p {
  margin: 0;
  color: #333333;
  font-size: 20px;
  line-height: 1.45;
  width: 400px;
  font-family: "VersosTest", sans-serif;
  font-weight: 400;
}

.empresa-card .col-lg-6.center {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
}

/* =========================
   BOX CONHECA EMPRESA
   ========================= */

.box-conheca-empresa {
  background: #0b0b0b;
  color: #ffffff;
  padding: 60px 50px;
  margin-top: 8px;
}

.box-conheca-empresa span {
  display: block;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 16px;
  font-family: "VersosTest", sans-serif;
  font-weight: 400;
}

.box-conheca-empresa strong {
  display: block;
  font-size: 35px;
  line-height: 1.35;
  font-family: "VersosTest", sans-serif;
  font-weight: 800;
  margin-bottom: 18px;
  color: #ffffff;
}

.box-conheca-empresa strong + strong {
  margin-bottom: 0;
}

section.foto img {
  width: 100%;
  display: block;
  height: auto;
}

/* =========================
   IMPACTO
   ========================= */

.impacto {
  padding: 8px;
  color: #ffffff;
}

.impacto .box {
  background: #0b0b0b;
  padding: 60px 50px;
}

.impacto span {
  display: block;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 50px;
  font-family: "VersosTest", sans-serif;
  font-weight: 400;
}

.impacto h3 {
  margin: 0 0 75px 0;
  font-size: 46px;
  line-height: 1.2;
  font-weight: 700;
  color: #ffffff;
  font-family: "VersosTest", sans-serif;
  font-weight: 800;
}

.impacto a {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.impacto p {
  margin: 0 0 30px 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 1.4;
  font-family: "VersosTest", sans-serif;
  font-weight: 600;
}

.impacto p:last-child {
  margin-bottom: 0;
}

.impacto .just {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

/* =========================
   SEJA EXTREMER
   ========================= */

.seja-extremer {
  margin-top: 8px;
  background: #ffffff;
  color: #111111;
}

.seja-extremer .box {
  padding: 98px 50px;
}

.seja-extremer span {
  display: block;
  font-size: 46px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #111111;
  margin-bottom: 50px;
  font-family: "VersosTest", sans-serif;
  font-weight: 800;
}

.seja-extremer h3 {
  margin: 0 0 18px 0;
  font-size: 25px;
  line-height: 1.3;
  font-family: "VersosTest", sans-serif;
  font-weight: 600;
  color: #111111;
}

.seja-extremer a {
  display: inline-block;
  padding: 7px 12px;
  border: 1px solid #111111;
  border-radius: 10px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #111111;
  text-decoration: none;
  margin-top: 210px;
}

.seja-extremer .just p {
  padding: 0 90px;
}

.seja-extremer .just p {
  margin: 0 0 35px 0;
  font-size: 20px;
  line-height: 1.45;
  color: #222222;
  font-family: "VersosTest", sans-serif;
  font-weight: 400;
}

.seja-extremer .just p:last-child {
  margin-bottom: 0;
}

.seja-extremer img {
  margin-top: 18px;
  width: 100%;
  height: auto;
  display: block;
}

/* =========================
   ETICA
   ========================= */

.etica {
  margin-top: 8px;
  background: #ffffff;
  color: #111111;
}

.etica .box {
  padding: 98px 50px;
}

.etica img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 28px;
}

.etica span {
  display: block;
  font-size: 46px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #111111;
  margin-bottom: 50px;
  font-family: "VersosTest", sans-serif;
  font-weight: 800;
}

.etica h3 {
  display: block;
  font-size: 46px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #111111;
  margin-bottom: 50px;
  font-family: "VersosTest", sans-serif;
  font-weight: 800;
}

.etica a {
  display: inline-block;
  padding: 7px 12px;
  border: 1px solid #111111;
  border-radius: 10px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #111111;
  text-decoration: none;
  margin-top: 70px;
}

.etica .just {
  padding: 0 90px;
}

.etica .just p {
  margin: 0 0 35px 0;
  font-size: 20px;
  line-height: 1.45;
  color: #222222;
  font-family: "VersosTest", sans-serif;
  font-weight: 400;
}

.etica .just p:last-child {
  margin-bottom: 0;
}

.impacto img {
  margin-top: 0;
  width: 100%;
  height: auto;
  display: block;
}

.empresa-card.is-open {
  max-height: 1000px;
}

@media (max-width: 992px) {
  .empresa-cont {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .hero {
    padding: 32px 0;
  }

  .hero-banner {
    justify-content: flex-start;
  }
}

@media (max-width: 576px) {
  .box-conheca-eg {
    padding: 0;
  }

  .empresa-card {
    max-height: 138px;
  }

  .empresa-cont {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px 0;
  }

  .empresa-cont h3 {
    font-size: 32px;
  }

  .empresa-cont p {
    width: 100%;
  }

  .impacto .box {
    padding: 20px;
  }

  .impacto h3 {
    font-size: 31px;
  }

  .etica .box {
    padding: 30px 25px;
  }

  .etica .just {
    padding: 20px 13px;
  }

  .seja-extremer .box {
    padding: 30px 25px;
  }

  .seja-extremer a {
    margin-top: 40px;
  }

  .seja-extremer .just p {
    padding: 0;
  }

  .site-footer {
    margin-top: 60px;
    padding: 0px;
    background: #0b0b0b;
    color: #ffffff;
  }

  .hero-banner {
    margin-top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 200px;
  }

  .hero .box {
    padding: 28px 22px;
  }

  .hero .box strong {
    font-size: 14px;
  }

  .hero .box h1 {
    font-size: 24px;
  }

}

@media (min-width: 992px) {
  .hero .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 900px) {
  .impacto a {
    padding: 0;
  }
}


/* =========================
   HERO BORA
   ========================= */

.hero-bora {
  position: relative;
  padding: 120px 0 180px;
  overflow: hidden;
  background: #ffffff;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.08;
  filter: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 1.05fr);
  gap: 60px;
  align-items: flex-start;
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding-top: 40px;
}

.hero-wordmark {
  font-size: clamp(92px, 9vw, 142px);
  font-weight: 800;
  color: #0b2f2a;
  letter-spacing: -0.02em;
  line-height: 0.9;
}


.hero-by {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 26px;
  color: #0b2f2a;
}

.hero-by span:first-child {
  font-size: 18px;
  opacity: 0.8;
}

.hero-x {
  font-weight: 800;
  font-size: 46px;
  letter-spacing: -0.02em;
  line-height: 1;
}

.hero-extreme {
  font-size: 24px;
}

.hero-extreme strong {
  font-weight: 700;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

.tag-dark {
  background: #062723;
  color: #ffffff;
}

.tag-dark .tag-mint {
  background: #c9f2d5;
  color: #0b2f2a;
}

.tag-mint .tag-lime {
  background: #96f45c;
  color: #0b2f2a;
}

.tag-lime .hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding-top: 10px;
  max-width: 560px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  padding: 8px 18px;
  border-radius: 999px;
  background: #0b2f2a;
  color: #6df48a;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-right h1 {
  font-size: 34px;
  line-height: 1.15;
  color: #0b2f2a;
  margin: 0;
  font-weight: 600;
}

.hero-right h1 strong {
  font-weight: 800;
}

.hero-right p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: #24423c;
  max-width: 380px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 22px;
  border-radius: 999px;
  background: linear-gradient(130deg, var(--bora-lime) 0%, var(--bora-lime-strong) 60%, #2fd04f 100%);
  color: #05251f;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  align-self: flex-end;
}

.hero-cta:hover,
.hero-cta:focus-visible {
  transform: none;
  box-shadow: none;
}

@media (max-width: 992px) {
  .hero-bora {
  position: relative;
  padding: 120px 0 180px;
  overflow: hidden;
  background: #ffffff;
}

  .hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 1.05fr);
  gap: 60px;
  align-items: flex-start;
}

  .hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding-top: 10px;
  max-width: 560px;
}
}

@media (max-width: 640px) {
  .hero-right h1 {
  font-size: 34px;
  line-height: 1.15;
  color: #0b2f2a;
  margin: 0;
  font-weight: 600;
}

  .hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 22px;
  border-radius: 999px;
  background: linear-gradient(130deg, var(--bora-lime) 0%, var(--bora-lime-strong) 60%, #2fd04f 100%);
  color: #05251f;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  align-self: flex-end;
}
}

.hero-bora .container {
  position: relative;
  z-index: 1;
}

.hero-bora .row {
  position: relative;
  z-index: 1;
}

.tag-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #062723;
}

.tag-icon img {
  width: 12px;
  height: 12px;
  display: block;
}

.tag-mint .tag-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #062723;
}

.tag-lime .tag-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #062723;
}

.hero-mark {
  font-size: 54px;
  font-weight: 800;
  color: #0b2f2a;
  letter-spacing: -0.02em;
}


/* =========================
   HERO BORA (RESET)
   ========================= */

.hero-bora {
  padding: 110px 0 160px;
  background: #ffffff;
}

.hero-left {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.hero-mark {
  font-size: 140px;
  font-weight: 800;
  color: #0b2f2a;
  letter-spacing: -0.02em;
  line-height: 0.9;
}

.hero-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.tag-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #062723;
}

.tag-icon img {
  width: 12px;
  height: 12px;
  display: block;
}

.tag-dark { background: #062723; color: #ffffff; }
.tag-mint { background: #c9f2d5; color: #0b2f2a; }
.tag-lime { background: #96f45c; color: #0b2f2a; }

.tag-mint .tag-icon { background: #d9f6e2; }
.tag-lime .tag-icon { background: #6ae64a; }

.hero-right {
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  max-width: 560px;
}

.hero-pill {
  align-self: center;
  padding: 8px 18px;
  border-radius: 999px;
  background: #0b2f2a;
  color: #6df48a;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-right h1 {
  font-size: 34px;
  line-height: 1.15;
  color: #0b2f2a;
  margin: 0;
  font-weight: 600;
}

.hero-right p {
  font-size: 13px;
  line-height: 1.6;
  color: #24423c;
  margin: 0;
  max-width: 380px;
}

.hero-cta {
  align-self: flex-end;
  padding: 8px 22px;
  border-radius: 999px;
  background: linear-gradient(130deg, var(--bora-lime) 0%, var(--bora-lime-strong) 60%, #2fd04f 100%);
  color: #05251f;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
}

/* =========================
   FIGMA MATCH OVERRIDES
   ========================= */

.bora-header {
  background: #012f2a;
  border-bottom: 0;
}

.bora-header::before {
  display: none;
}

.bora-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 86px;
  padding: 0;
}

.bora-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.bora-logo img {
  width: 126px;
  filter: none;
  display: block;
}

.bora-nav {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 38px;
  margin-right: 28px;
}

.bora-nav a {
  display: inline-block;
  text-decoration: none;
  white-space: nowrap;
  font-size: 12px;
  letter-spacing: 0.22em;
  font-weight: 600;
  color: #ffffff;
  position: relative;
  transition: color 180ms ease;
}

.bora-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: #2ce26f;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 180ms ease;
}

.bora-nav a:hover::after,
.bora-nav a:focus-visible::after {
  transform: scaleX(1);
}

.bora-nav a:hover,
.bora-nav a:focus-visible {
  color: #ffffff;
}

.bora-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  white-space: nowrap;
  flex: 0 0 auto;
  padding: 10px 24px;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 0.08em;
  background: #2ce26f;
  color: #032620;
  box-shadow: none;
  transition: filter 180ms ease, transform 180ms ease;
}

.bora-cta:hover,
.bora-cta:focus-visible {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.bora-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 10px;
  background: rgba(44, 226, 111, 0.15);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}

.bora-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: #2ce26f;
  transition: transform 220ms ease, opacity 220ms ease;
}

@media (max-width: 991px) {
  .bora-bar {
    height: auto;
    padding: 14px 0 12px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px 14px;
  }

  .bora-logo img {
    width: 112px;
  }

  .bora-toggle {
    display: inline-flex;
    margin-left: auto;
    order: 2;
  }

  .bora-cta {
    order: 4;
    width: 100%;
    justify-content: center;
    display: none;
    padding: 8px 14px;
    font-size: 11px;
    letter-spacing: 0.06em;
  }

  .bora-nav {
    order: 3;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    margin: 0;
    gap: 12px;
    padding-top: 10px;
  }

  .bora-nav a {
    width: 100%;
    font-size: 11px;
    letter-spacing: 0.16em;
    padding: 2px 0;
  }

  .bora-header.is-open .bora-nav,
  .bora-header.is-open .bora-cta {
    display: flex;
  }

  .bora-header.is-open .bora-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .bora-header.is-open .bora-toggle span:nth-child(2) {
    opacity: 0;
  }

  .bora-header.is-open .bora-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

@media (max-width: 575px) {
  .bora-bar {
    padding: 12px 10px 10px;
  }
}

.hero-bora {
  position: relative;
  background: #ffffff;
  padding: 110px 0 140px;
  min-height: 780px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  filter: none;
}

.hero-bora .container,
.hero-bora .row,
.hero-left,
.hero-right {
  position: relative;
  z-index: 1;
}

.hero-left {
  min-height: 540px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding-bottom: 46px;
}

.hero-tags {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  background: transparent;
}

.tag-dark {
  color: #ffffff;
}

.tag-mint {
  color: #0a2f29;
}

.tag-lime {
  color: #0a2f29;
}

.tag-label {
  display: inline-flex;
  align-items: center;
  height: 38px;
  border-radius: 999px;
  padding: 0 18px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
}

.tag-dark .tag-label {
  background: #032d28;
  color: #ffffff;
}

.tag-mint .tag-label {
  background: #c9e9d0;
  color: #0a2f29;
}

.tag-lime .tag-label {
  background: #7bea5b;
  color: #0a2f29;
}

.tag-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 34px;
}

.tag-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.hero-right {
  padding-top: 20px;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.hero-pill {
  padding: 8px 22px;
  border-radius: 999px;
  background: #032d28;
  color: #43ef75;
  letter-spacing: 0.22em;
  font-size: 10px;
  font-weight: 700;
  align-self: flex-start;
}

.hero-right h1 {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 52px;
  line-height: 55px;
  letter-spacing: -2.78px;
  color: #032d28;
  font-weight: 400;
  max-width: 684px;
}

.hero-right h1 strong {
  font-weight: 700;
}

.hero-right p {
  margin: 0;
  max-width: 520px;
  font-size: 16px;
  line-height: 1.45;
  color: #1b3e38;
}

.hero-right p strong {
  font-weight: 800;
}

.hero-cta {
  align-self: flex-end;
  padding: 10px 30px;
  border-radius: 999px;
  background: #2ce26f;
  box-shadow: none;
  color: #032620;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  gap: 12px;
}

@media (max-width: 991px) {
  .hero-bora {
    min-height: auto;
    padding: 52px 0 70px;
  }

  .hero-left {
    min-height: 320px;
    justify-content: flex-end;
  }

  .hero-right {
    padding-top: 24px;
    gap: 16px;
  }

  .hero-right h1 {
    font-size: 36px;
  }

  .hero-right p {
    font-size: 15px;
  }

  .hero-cta {
    align-self: flex-start;
    font-size: 14px;
  }
}

/* =========================
   Context Block
   ========================= */

.context-block {
  position: relative;
  background: #012722;
}

.context-surface {
  position: relative;
  overflow: hidden;
  min-height: 980px;
}

.context-scribble {
  position: absolute;
  top: -133px;
  right: -240px;
  width: 1160px;
  height: 1500px;
  z-index: 0;
  transform: translate3d(0, 0, 0);
  pointer-events: none;
}

.scribble-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.scribble-path {
  fill: none;
  stroke: #2ce26f;
  stroke-width: 154;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  opacity: 1;
  will-change: stroke-dashoffset;
}

.context-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 88px 0 124px;
  margin-left: 30px;
  display: grid;
  grid-template-columns: 170px minmax(0, 632px);
  column-gap: 52px;
  align-items: start;
}

.context-kicker {
  display: inline-block;
  margin-bottom: 54px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #28e275;
  grid-column: 1;
  align-self: start;
  margin-top: 4px;
}

.context-copy {
  display: grid;
  gap: 36px;
  max-width: 632px;
  margin-left: 0;
  grid-column: 2;
  padding-top: 75px;
}

.reveal-line {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 36px;
  line-height: 58.88px;
  letter-spacing: -0.51px;
  font-weight: 400;
}

.reveal-word {
  color: rgba(184, 202, 203, 0.72);
  transition: color 0.28s ease;
}

.reveal-word.is-on {
  color: #ffffff;
}

.reveal-word.reveal-strong {
  font-weight: 700;
  color: rgba(203, 217, 218, 0.86);
}

.reveal-word.reveal-strong.is-on {
  color: #ffffff;
}

@media (max-width: 991px) {
  .context-surface {
    min-height: auto;
  }

  .context-scribble {
    width: 520px;
    height: 700px;
    right: -180px;
    top: -10px;
    opacity: 0.88;
  }

  .context-inner {
    margin-left: clamp(22px, 5vw, 40px);
    padding: 86px 0 80px;
    max-width: min(700px, calc(100% - 24px));
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 24px;
  }

  .context-copy {
    margin-left: 0;
    max-width: 100%;
    grid-column: 1;
  }

  .context-kicker {
    grid-column: 1;
    margin-bottom: 0;
  }

  .reveal-line {
    font-size: 24px;
    line-height: 1.45;
    letter-spacing: -0.2px;
  }
}

/* =========================
   Ticker Band
   ========================= */

.ticker-band {
  position: relative;
  width: 100%;
  height: 72px;
  background: #2ce26f;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.ticker-track {
  display: flex;
  width: max-content;
  height: 100%;
  animation: ticker-slide 28s linear infinite;
  will-change: transform;
}

.ticker-seq {
  display: flex;
  align-items: center;
  height: 100%;
  flex-shrink: 0;
  padding-right: 24px;
}

.ticker-item {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 21px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #052222;
  white-space: nowrap;
}

.ticker-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #f3f4f3;
  margin: 0 34px;
  flex: 0 0 14px;
}

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

/* =========================
   Fazemos Block
   ========================= */

.fazemos-block {
  background: #2ce26f;
  padding: 86px 0 0;
  overflow: hidden;
}

.fazemos-head {
  max-width: 100%;
  margin-left: clamp(28px, 7vw, 29px);
  display: grid;
  grid-template-columns: 170px minmax(0, 955px);
  column-gap: 52px;
  align-items: start;
}

.fazemos-kicker {
  display: inline-block;
  margin-bottom: 42px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #0b3b31;
  grid-column: 1;
  align-self: start;
  margin-top: 6px;
}

.fazemos-copy {
  grid-column: 2;
  max-width: 955px;
  padding-top: 75px;
}

.fazemos-copy h2 {
  margin: 0 0 22px;
  font-family: "Inter", sans-serif;
  font-size: 56px;
  line-height: 64px;
  letter-spacing: -2.78px;
  color: #042a24;
  font-weight: 400;
}

.fazemos-copy h2 strong {
  font-weight: 800;
}

.fazemos-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  width: 332px;
  height: 65px;
  padding: 0 24px;
  border-radius: 999px;
  background: #052222;
  color: #fbfbfb;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 45px;
  line-height: 18px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  vertical-align: middle;
  transform: translateY(-2px);
}

.fazemos-copy p {
  margin: 0;
  max-width: 955px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 22px;
  letter-spacing: 0;
  color: #052222;
}

.fazemos-grid {
  display: grid;
  grid-template-columns: 1fr minmax(420px, 560px);
  gap: 18px;
  margin-top: 32px;
  align-items: end;
}

.fazemos-figure {
  transform: translateX(-58px);
}

.fazemos-figure img {
  width: min(760px, 100%);
  height: auto;
  display: block;
}

.fazemos-list {
  display: grid;
  gap: 16px;
  padding: 0 24px 42px 0;
}

.faz-card {
  width: 553px;
  min-height: 86px;
  background: #c7e0d0;
  border-radius: 999px;
  padding: 18px 28px;
  display: flex;
  align-items: center;
}

.faz-card:nth-child(even) {
  background: #f2f3f2;
}

.faz-card p {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 22px;
  letter-spacing: 0;
  color: #052222;
  padding-left: 22px;
  position: relative;
}

.faz-card p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #052222;
}

.faz-card p strong {
  font-weight: 700;
}

/* =========================
   Como Fazemos Block
   ========================= */

.como-fazemos-block {
  position: relative;
  background: #052222;
  padding: 84px 0;
  overflow: hidden;
}

.como-fazemos-stroke {
  position: absolute;
  top: -145px;
  left: 0;
  right: 0;
  bottom: auto;
  height: calc(100% + 145px);
  z-index: 0;
  pointer-events: none;
}

.como-fazemos-stroke svg {
  width: 100%;
  height: 100%;
  display: block;
  transform: translate3d(0px, 142px, 0);
}

.como-fazemos-stroke-path {
  fill: none;
  stroke: #2ce26f;
  stroke-width: 158;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 1;
  shape-rendering: geometricPrecision;
  filter: none;
}

.como-fazemos-inner {
  max-width: 100%;
  margin-left: clamp(28px, 7vw, 29px);
  display: grid;
  grid-template-columns: 170px minmax(0, 955px);
  column-gap: 52px;
  position: relative;
  z-index: 1;
}

.como-fazemos-kicker {
  grid-column: 1;
  margin-top: 4px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #28e275;
}

.como-fazemos-copy {
  grid-column: 2;
  padding-top: 75px;
}

.como-fazemos-copy h2 {
  margin: 0 0 12px;
  font-family: "Inter", sans-serif;
  font-size: 24px;
  line-height: 38.4px;
  letter-spacing: 0;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
}

.como-fazemos-copy p {
  margin: 0;
  max-width: 955px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.5);
}

.como-fazemos-copy p strong {
  font-weight: 700;
}

.cf-tabs {
  margin-top: 35px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cf-tab {
  display: inline-flex;
  align-items: center;
  border: 0;
  border-radius: 999px;
  min-height: 37px;
  padding: 8px 17px;
  background: #ffffff;
  color: #0a0f0d;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 21px;
  font-weight: 400;
}

.cf-tab.is-active {
  background: #28e275;
}

.cf-helper {
  display: block;
  margin-top: 30px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 16px;
  color: rgba(255, 255, 255, 0.5);
}

.cf-grid {
  grid-column: 2;
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, 461.33px);
  column-gap: 32px;
  row-gap: 32px;
}

.cf-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-height: 244.56px;
  border-radius: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 31.61px 36px 30px 46px;
}

.cf-card-light {
  background: #fbfbfb;
}

.cf-card-green {
  background: #28e275;
}

.cf-index {
  flex: 0 0 auto;
  margin-top: 8px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 21px;
  color: #052222;
}

.cf-card .texto {
  display: flex;
  flex-direction: column;
}

.cf-card h3 {
  margin: 0 0 20px;
  font-family: "Inter", sans-serif;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0;
  font-weight: 700;
  color: #052222;
}

.cf-card p {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 0;
  color: #052222;
}

.cf-card .texto p {
  max-width: 340px;
}

.cf-card .texto p + p {
  margin-top: 12px;
}

/* =========================
   Pilares Block
   ========================= */

.pilares-block {
  background: #f3f4f3;
  padding: 84px 0 92px;
}

.pilares-inner {
  max-width: 100%;
  margin-left: clamp(28px, 7vw, 29px);
  display: grid;
  grid-template-columns: 170px minmax(0, 1110px);
  column-gap: 52px;
}

.pilares-kicker {
  grid-column: 1;
  margin-top: 4px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #0d2f29;
}

.pilares-copy {
  grid-column: 2;
  padding-top: 75px;
}

.pilares-copy h2 {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: clamp(52px, 5vw, 74px);
  line-height: 1.04;
  letter-spacing: -1.8px;
  font-weight: 700;
  color: #061f1b;
  clip-path: inset(50% 0 50% 0);
  will-change: transform, opacity, clip-path;
}

.pilares-copy p {
  margin: 14px 0 0;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: #1f3f39;
  will-change: transform, opacity;
}

.pilares-grid {
  grid-column: 2;
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.pilar-card {
  display: flex;
  flex-direction: column;
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transform-origin: center bottom;
  transition: none;
  will-change: transform, opacity;
}

@media (prefers-reduced-motion: reduce) {
  .pilar-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.pilar-pill-wrap {
  margin-bottom: 12px;
}

.pilar-card .tag-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
}

.pilar-card .tag-icon img {
  width: 36px;
  height: 36px;
}

.pilar-box {
  min-height: 372px;
  border-radius: 30px;
  padding: 32px;
}

.pilar-box h3 {
  margin: 0 0 24px;
  font-family: "Inter", sans-serif;
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
}

.pilar-box p {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  max-width: 239px;
}

.pilar-box p + p {
  margin-top: 20px;
}

.pilar-box p strong {
  font-weight: 600;
}

.pilar-card-dark .pilar-box {
  background: #032d28;
  color: #f7fbf8;
}

.pilar-card-mint .pilar-box {
  background: #b9ddb9;
  color: #072823;
}

.pilar-card-green .pilar-box {
  background: #2ce26f;
  color: #072823;
}

/* =========================
   Conteudo Block
   ========================= */

.conteudo-block {
  background: #052222;
  padding: 84px 0 94px;
}

.conteudo-inner {
  max-width: 100%;
  margin-left: clamp(28px, 7vw, 29px);
  display: grid;
  grid-template-columns: 170px minmax(0, 1110px);
  column-gap: 52px;
}

.conteudo-kicker,
.ecossistema-kicker {
  grid-column: 1;
  margin-top: 4px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #28e275;
}

.conteudo-copy,
.ecossistema-copy {
  grid-column: 2;
  padding-top: 75px;
}

.conteudo-copy h2,
.ecossistema-copy h2 {
  margin: 0 0 14px;
  font-family: "Inter", sans-serif;
  font-size: 55px;
  line-height: 67.2px;
  letter-spacing: -1.92px;
  font-weight: 700;
  color: #f3f8f5;
}

.conteudo-copy h2 strong {
  font-family: "Inter", sans-serif;
  font-size: 55px;
  line-height: 67.2px;
  letter-spacing: -1.92px;
  font-weight: 700;
  color: #2ce26f;
}

.conteudo-columns {
  display: grid;
  grid-template-columns: 445.2px 438.21px;
  gap: 14.13px;
  margin-bottom: 26px;
}

.conteudo-columns p {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 24px;
  line-height: 38.4px;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.5);
}

.conteudo-columns p:nth-child(2) {
  color: rgba(255, 255, 255, 0.8);
}

.pessoas-grid {
  display: grid;
  grid-template-columns: repeat(3, 295px);
  gap: 30px 30px;
}

.pessoa-tile {
  width: 295px;
  height: 365px;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.pessoa-tile.is-green {
  background: #2ce26f;
}

.pessoa-tile.is-mint {
  background: #c7e0d0;
}

.pessoa-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  display: block;
}

.ecossistema-block {
  margin-top: 74px;
  grid-column: 1 / span 2;
  display: grid;
  grid-template-columns: 170px minmax(0, 1110px);
  column-gap: 52px;
}

.ecossistema-copy p {
  margin: 0;
  max-width: 859px;
  font-family: "Inter", sans-serif;
  font-size: 24px;
  line-height: 38.4px;
  color: rgba(255, 255, 255, 0.5);
}

.ecos-divider {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 436.75px 456px;
  gap: 18px;
}

.ecos-divider span {
  display: block;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 25px;
  color: rgba(255, 255, 255, 0.5);
}

.ecos-divider span:nth-child(2) {
  color: rgba(255, 255, 255, 0.8);
}

.ecos-brand-head {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ecos-brand {
  font-family: "Inter", sans-serif;
  font-size: 33px;
  font-weight: 700;
  color: #d6e4dc;
}

.ecos-brand img {
  display: block;
  width: auto;
  max-width: 340px;
  object-fit: contain;
}

.ecos-brand-note {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 21px;
  color: #2ce26f;
  text-decoration: none;
}

.ecos-brand-note i {
  font-size: 17px;
  line-height: 1;
}

.logos-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.logo-card {
  position: relative;
  overflow: hidden;
  min-height: 198px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: radial-gradient(80% 140% at 0% 0%, rgba(10, 58, 51, 0.55) 0%, rgba(5, 34, 34, 0.9) 100%);
  padding: 24px 28px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  transition:
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 260ms ease,
    box-shadow 320ms ease,
    background 320ms ease;
}

.logo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    115deg,
    transparent 20%,
    rgba(44, 226, 111, 0.08) 45%,
    rgba(44, 226, 111, 0.22) 52%,
    rgba(44, 226, 111, 0.08) 60%,
    transparent 80%
  );
  transform: translateX(-120%);
  opacity: 0;
  pointer-events: none;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1), opacity 260ms ease;
}

.logo-card:hover,
.logo-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(44, 226, 111, 0.28);
  background: radial-gradient(80% 140% at 0% 0%, rgba(14, 72, 63, 0.64) 0%, rgba(5, 34, 34, 0.96) 100%);
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.22),
    inset 0 0 0 1px rgba(44, 226, 111, 0.08);
}

.logo-card:hover::after,
.logo-card:focus-within::after {
  opacity: 1;
  transform: translateX(120%);
}

.logo-card strong {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #e6efe9;
}

.logo-card img {
  width: auto;
  max-width: 200px;
  height: auto;
  object-fit: contain;
  display: block;
}

.logo-card:nth-child(1) img { width: 138px; height: 69px; }
.logo-card:nth-child(2) img { width: 195px; height: 97px; }
.logo-card:nth-child(3) img { width: 125px; height: 63px; }
.logo-card:nth-child(4) img { width: 161px; height: 80px; }
.logo-card:nth-child(5) img { width: 200px; height: 100px; }
.logo-card:nth-child(6) img { width: 147px; height: 74px; }

.logo-card a {
  position: relative;
  overflow: hidden;
  font-family: "Inter", sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  height: 39px;
  padding: 0 21px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(5, 34, 34, 0.24);
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition:
    background-color 260ms ease,
    border-color 260ms ease,
    color 260ms ease,
    box-shadow 320ms ease;
}

.logo-card a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    115deg,
    transparent 10%,
    rgba(44, 226, 111, 0.05) 28%,
    rgba(44, 226, 111, 0.42) 50%,
    rgba(44, 226, 111, 0.05) 72%,
    transparent 90%
  );
  transform: translateX(-130%);
  opacity: 0;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), opacity 220ms ease;
  pointer-events: none;
}

.logo-card a:hover,
.logo-card a:focus-visible {
  background: rgba(44, 226, 111, 0.14);
  border-color: rgba(44, 226, 111, 0.52);
  color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 1px rgba(44, 226, 111, 0.18), 0 0 18px rgba(44, 226, 111, 0.22);
}

.logo-card a:hover::before,
.logo-card a:focus-visible::before {
  opacity: 1;
  transform: translateX(130%);
}

/* =========================
   Na Pratica Block
   ========================= */

.pratica-block {
  background: #ebebeb;
  padding: 90px 0 96px;
}

.pratica-inner {
  margin-left: clamp(28px, 7vw, 29px);
  display: grid;
  grid-template-columns: 170px minmax(0, 100%);
  column-gap: 52px;
}

.pratica-kicker {
  grid-column: 1;
  margin-top: 6px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #1f3f39;
}

.pratica-copy {
  grid-column: 2;
  max-width: 1062px;
  padding-top: 75px;
}

.pratica-copy h2 {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 55px;
  line-height: 66px;
  letter-spacing: -0.8px;
  font-weight: 400;
  color: #052222;
}

.pratica-copy h2 strong {
  font-weight: 700;
}

.pratica-cards {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 336px);
  gap: 18px;
}

.pratica-card {
  min-height: 449px;
  border-radius: 30px;
  padding: 33px 28px 30px;
}

.pratica-label {
  display: block;
  margin-bottom: 26px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 2.4px;
  font-weight: 700;
  text-transform: uppercase;
}

.pratica-card p {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  line-height: 27.2px;
  letter-spacing: 0;
  font-weight: 400;
  max-width: 250px;
}

.pratica-card p + p {
  margin-top: 24px;
}

.pratica-card p strong {
  font-weight: 700;
}

.pratica-card-dark {
  background: #052222;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.65);
}

.pratica-card-dark .pratica-label {
  color: rgba(40, 226, 117, 0.6);
}

.pratica-card-mint {
  background: #b9ddb9;
  color: #0b2e28;
}

.pratica-card-mint .pratica-label {
  color: #0f3d35;
}

.pratica-card-green {
  background: #2ce26f;
  color: #072823;
}

.pratica-card-green .pratica-label {
  color: #0a3a31;
}

.pratica-foot {
  margin: 24px 0 0 auto;
  max-width: 653px;
  text-align: right;
  font-family: "Inter", sans-serif;
  font-size: 24px;
  line-height: 30px;
  color: #1f3f39;
}

.pratica-foot strong {
  font-weight: 700;
  color: #082a24;
}

/* =========================
   Para Quem E
   ========================= */

.para-quem-block {
  background: #052222;
  border-bottom: 3px solid #2ce26f;
  padding: 82px 0 96px;
}

.para-quem-inner {
  margin-left: clamp(28px, 7vw, 29px);
  display: grid;
  grid-template-columns: 170px minmax(0, 955px);
  column-gap: 52px;
}

.para-quem-inner + .para-quem-inner {
  margin-top: 56px;
}

.para-quem-kicker {
  grid-column: 1;
  margin-top: 4px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #28e275;
}

.para-quem-copy {
  grid-column: 2;
  padding-top: 75px;
}

.pq-item {
  padding: 0 0 33px;
  margin-bottom: 27px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.pq-item:first-child {
  padding-top: 0;
}

.pq-item h3 {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
  color: #ffffff;
}

.pq-item p {
  margin: 23px 0 0;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 27.2px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 921.71px;
}

.pq-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

/* =========================
   FAQ Block
   ========================= */

.faq-block {
  background: #b9ddb9;
  padding: 88px 0 94px;
}

.faq-inner {
  margin-left: clamp(28px, 7vw, 29px);
  display: grid;
  grid-template-columns: 170px minmax(0, 955px);
  column-gap: 52px;
}

.faq-kicker {
  grid-column: 1;
  margin-top: 4px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #1f3f39;
}

.faq-copy {
  grid-column: 2;
  padding-top: 75px;
}

.faq-copy h2 {
  margin: 0 0 45px;
  font-family: "Inter", sans-serif;
  font-size: 40px;
  line-height: 44px;
  letter-spacing: -0.8px;
  font-weight: 700;
  color: #052222;
}

.faq-panel {
  width: min(100%, 100%);
  background: #31554d;
  border-radius: 20px;
  padding: 22px 121px 28px;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.36);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 21.5px 30px 21.5px 0;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 100%;
  font-weight: 400;
  color: #ffffff;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "▼";
  position: absolute;
  right: 0;
  top: 50%;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  line-height: 100%;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%) rotate(0deg);
  transition: transform 220ms ease;
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(180deg);
}

.faq-item p {
  margin: 0 0 14px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 22px;
  color: rgba(255, 255, 255, 0.72);
}

/* =========================
   Contato + Footer
   ========================= */

.contato-block {
  background: #2ce26f;
  padding: 84px 0 78px;
}

.contato-inner {
  margin-left: clamp(28px, 7vw, 29px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: 52px;
}

.contato-kicker {
  grid-column: 1;
  margin-top: 4px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #0a3a31;
}

.contato-copy {
  grid-column: 1;
  padding-top: 75px;
  max-width: 539px;
}

.contato-copy h2 {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 55px;
  line-height: 56.4px;
  letter-spacing: -1.44px;
  font-weight: 400;
  color: #052222;
}

.contato-copy h2 strong {
  font-weight: 700;
}

.contato-copy p {
  margin: 22px 0 0;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  line-height: 30px;
  color: #052222;
  max-width: 277px;
}

.contato-cta {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: #052222;
  color: #2ce26f;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0.36px;
  font-weight: 400;
  text-decoration: none;
}

.contato-cta strong {
  font-weight: 700;
}

.contato-cta-light {
  font-weight: 400;
}

.contato-cta-arrow {
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
}

.contato-brand {
  margin-top: 158px;
}

.contato-brand img {
  width: auto;
  height: 64px;
  display: block;
}

.contato-brand-by {
  margin-top: 6px;
  font-family: "Inter", sans-serif;
  font-size: 24px;
  line-height: 30px;
  color: #052222;
}

.contato-brand-by strong {
  font-weight: 700;
}

.contato-form-wrap {
  grid-column: 2;
  padding-top: 75px;
  max-width: 539px;
}

.contato-form {
  background: #22884a;
  border-radius: 22px;
  padding: 26px 26px 20px;
  display: grid;
  gap: 14px;
}

.contato-form label,
.contato-form legend {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.9);
}

.contato-form input,
.contato-form textarea {
  margin-top: 7px;
  width: 100%;
  border: 0;
  border-radius: 22px;
  background: #155d35;
  color: #e7f4ec;
  padding: 10px 14px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 20px;
}

.contato-form textarea {
  border-radius: 12px;
  resize: none;
}

.contato-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contato-form fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  display: grid;
  gap: 8px;
}

.contato-form fieldset label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.contato-form fieldset input[type="checkbox"] {
  margin: 0;
  width: 13px;
  height: 13px;
  border-radius: 0;
  accent-color: #ffffff;
}

.contato-form button {
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: #2ce26f;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #052222;
}

.contato-form button:disabled {
  opacity: 0.75;
  cursor: wait;
}

.form-status {
  margin: 0;
  min-height: 20px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  line-height: 18px;
  color: rgba(255, 255, 255, 0.88);
}

.form-status.is-error {
  color: #ffdede;
}

.contato-form small {
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  line-height: 16px;
  color: rgba(255, 255, 255, 0.5);
}

.formspree-hidden {
  width: 0;
  height: 0;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.site-footer {
  padding: 50px;
  background: #052222;
  color: #ffffff;
}

.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-footer p {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  line-height: 18px;
  color: #2ce26f;
}

@media (max-width: 991px) {
  .conteudo-block {
    padding: 58px 0 68px;
  }

  .conteudo-inner,
  .ecossistema-inner {
    margin-left: clamp(22px, 5vw, 40px);
    grid-template-columns: 1fr;
    row-gap: 16px;
    column-gap: 0;
  }

  .conteudo-kicker,
  .conteudo-copy,
  .ecossistema-kicker,
  .ecossistema-copy {
    grid-column: 1;
  }

  .conteudo-copy h2,
  .ecossistema-copy h2 {
    font-size: 32px;
  }

  .conteudo-columns {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .pessoas-grid,
  .logos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ecos-divider {
    grid-template-columns: 1fr;
  }

  .pratica-block {
    padding: 64px 0 72px;
  }

  .pratica-inner {
    margin-left: clamp(22px, 5vw, 40px);
    grid-template-columns: 1fr;
    row-gap: 16px;
    column-gap: 0;
  }

  .pratica-kicker,
  .pratica-copy {
    grid-column: 1;
  }

  .pratica-copy h2 {
    font-size: 36px;
  }

  .pratica-cards {
    grid-template-columns: 1fr;
  }

  .pratica-card {
    min-height: auto;
  }

  .pratica-foot {
    font-size: 24px;
    text-align: left;
  }

  .para-quem-block {
    padding: 62px 0 70px;
  }

  .para-quem-inner {
    margin-left: clamp(22px, 5vw, 40px);
    grid-template-columns: 1fr;
    row-gap: 16px;
    column-gap: 0;
  }

  .para-quem-kicker,
  .para-quem-copy {
    grid-column: 1;
  }

  .pq-item h3 {
    font-size: 24px;
  }

  .faq-block {
    padding: 62px 0 70px;
  }

  .faq-inner {
    margin-left: clamp(22px, 5vw, 40px);
    grid-template-columns: 1fr;
    row-gap: 16px;
    column-gap: 0;
  }

  .faq-kicker,
  .faq-copy {
    grid-column: 1;
  }

  .faq-copy h2 {
    font-size: 38px;
  }

  .faq-panel {
    padding: 18px 20px 18px;
    border-radius: 14px;
  }

  .contato-block {
    padding: 62px 0 64px;
  }

  .contato-inner {
    margin-left: clamp(22px, 5vw, 40px);
    grid-template-columns: 1fr;
    row-gap: 18px;
    column-gap: 0;
  }

  .contato-kicker,
  .contato-copy,
  .contato-form-wrap {
    grid-column: 1;
  }

  .contato-copy,
  .contato-form-wrap {
    padding-top: 0;
  }

  .contato-copy h2 {
    font-size: 42px;
  }

  .contato-copy p {
    font-size: 20px;
  }

  .contato-brand {
    margin-top: 48px;
  }

  .contato-brand img {
    height: 52px;
  }

  .contato-row {
    grid-template-columns: 1fr;
  }

  .site-footer .container {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}

@media (max-width: 991px) {
  .fazemos-block {
    padding-top: 54px;
  }

  .fazemos-head {
    margin-left: clamp(22px, 5vw, 40px);
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 22px;
  }

  .fazemos-kicker {
    grid-column: 1;
    margin-top: 0;
    margin-bottom: 0;
  }

  .fazemos-copy {
    grid-column: 1;
    max-width: 100%;
  }

  .fazemos-copy h2 {
    font-size: 38px;
  }

  .fazemos-pill {
    width: auto;
    height: auto;
    min-height: 52px;
    font-size: 36px;
    line-height: 1;
    padding: 8px 20px;
  }

  .fazemos-copy p {
    max-width: 100%;
  }

  .fazemos-grid {
    grid-template-columns: 1fr;
  }

  .fazemos-figure {
    order: 2;
    transform: none;
  }

  .fazemos-list {
    order: 1;
    padding: 0 0 24px;
  }

  .faz-card {
    width: 100%;
    min-height: auto;
    border-radius: 20px;
  }

  .como-fazemos-block {
    padding: 56px 0 64px;
  }

  .como-fazemos-stroke-path {
    stroke-width: 98;
  }

  .como-fazemos-inner {
    margin-left: clamp(22px, 5vw, 40px);
    grid-template-columns: 1fr;
    row-gap: 20px;
    column-gap: 0;
  }

  .como-fazemos-kicker,
  .como-fazemos-copy,
  .cf-grid {
    grid-column: 1;
  }

  .cf-grid {
    grid-template-columns: 1fr;
  }

  .cf-card {
    min-height: auto;
    padding: 24px 20px 20px 44px;
    border-radius: 22px;
  }

  .cf-card h3 {
    font-size: 22px;
    line-height: 30px;
  }

  .pilares-block {
    padding: 58px 0 64px;
  }

  .pilares-inner {
    margin-left: clamp(22px, 5vw, 40px);
    grid-template-columns: 1fr;
    row-gap: 16px;
    column-gap: 0;
  }

  .pilares-kicker,
  .pilares-copy,
  .pilares-grid {
    grid-column: 1;
  }

  .pilares-copy h2 {
    font-size: 46px;
    letter-spacing: -1px;
  }

  .pilares-copy p {
    font-size: 18px;
  }

  .pilares-grid {
    grid-template-columns: 1fr;
  }

  .pilar-box {
    min-height: auto;
  }

  .pilar-box h3 {
    font-size: 34px;
  }

  .pilar-box p {
    font-size: 18px;
  }
}

@media (max-width: 991px) {
  .ticker-band {
    height: 56px;
  }

  .ticker-item {
    font-size: 20px;
  }

  .ticker-dot {
    width: 10px;
    height: 10px;
    margin: 0 20px;
    flex: 0 0 10px;
  }
}

@media (max-width: 991px) {
  html,
  body {
    overflow-x: hidden;
  }

  .hero-grid,
  .context-inner,
  .fazemos-head,
  .como-fazemos-inner,
  .pilares-inner,
  .conteudo-inner,
  .ecossistema-inner,
  .pratica-inner,
  .para-quem-inner,
  .faq-inner,
  .contato-inner {
    margin-left: 0;
  }

  .hero-bora .container,
  .context-block .container,
  .fazemos-block .container,
  .como-fazemos-block .container,
  .pilares-block .container,
  .conteudo-block .container,
  .ecossistema-block .container,
  .pratica-block .container,
  .para-quem-block .container,
  .faq-block .container,
  .contato-block .container,
  .site-footer .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .pessoas-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .pessoa-tile,
  .logo-card {
    min-width: 0;
    width: 100%;
  }

  .logos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .ecos-brand {
    gap: 16px;
  }

  .ecos-brand img {
    max-width: min(100%, 340px);
    width: 100%;
    height: auto;
  }
}

/* =========================
   MOBILE HARD FIXES
   ========================= */

@media (max-width: 991px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .hero-bora {
    padding: 36px 0 56px;
    min-height: auto;
  }

  .hero-left {
    min-height: auto;
    padding-bottom: 20px;
    justify-content: flex-start;
  }

  .hero-tags {
    flex-wrap: wrap;
    row-gap: 10px;
  }

  .tag-label {
    font-size: 18px;
  }

  .hero-right h1 {
    font-size: 32px;
    line-height: 1.12;
    letter-spacing: -1.4px;
  }

  .hero-right p {
    max-width: 100%;
  }

  .context-inner,
  .conteudo-inner,
  .ecossistema-block,
  .pratica-inner,
  .para-quem-inner,
  .faq-inner,
  .contato-inner {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .context-scribble {
    right: -210px;
  }

  .scribble-path {
    stroke: #0ea85a;
    opacity: 0.42;
  }

  .como-fazemos-stroke-path {
    stroke: #0ea85a;
    opacity: 0.34;
  }

  .conteudo-columns {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .conteudo-copy h2,
  .ecossistema-copy h2 {
    font-size: 30px;
    line-height: 1.12;
    letter-spacing: -1px;
  }

  .conteudo-columns p,
  .ecossistema-copy p {
    font-size: 20px;
    line-height: 1.35;
  }

  .pessoas-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .pessoa-tile {
    width: 100%;
    height: auto;
    aspect-ratio: 295 / 365;
  }

  .ecos-divider {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ecos-brand-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .ecos-brand-note {
    white-space: normal;
  }

  .logos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .logo-card {
    min-height: 176px;
    padding: 18px 16px;
  }

  .logo-card img {
    max-width: min(100%, 150px);
    height: auto !important;
  }
}

@media (max-width: 575px) {
  .site-footer {
    padding: 15px;
    background: #052222;
    color: #ffffff;
    margin: 0;
  }

  .hero-bora .container,
  .context-block .container,
  .fazemos-block .container,
  .como-fazemos-block .container,
  .pilares-block .container,
  .conteudo-block .container,
  .pratica-block .container,
  .para-quem-block .container,
  .faq-block .container,
  .contato-block .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .pessoas-grid,
  .logos-grid {
    grid-template-columns: 1fr;
  }

  /* Hero mobile */
  .hero-right h1 {
    font-size: 28px;
  }

  .hero-media video {
    width: 1000px;
    height: 508px;
    object-fit: contain;
    object-position: -65px -100px;
    opacity: 1;
    filter: none;
  }

  .hero-bora {
    padding-top: 28px;
    background: #ffffff;
  }

  .hero-media {
    display: block;
    inset: 0 auto auto 0;
    width: 100%;
    height: 250px;
    z-index: 0;
    overflow: hidden;
  }

  .hero-left {
    padding-top: 170px;
  }

  .hero-tags {
    gap: 8px;
  }

  .tag-label {
    font-size: 10px;
    height: 34px;
    padding: 0 14px;
  }

  .tag {
    gap: 2px;
  }

  .tag-icon,
  .tag-icon img {
    width: 30px;
    height: 30px;
  }
}
