@import url("../css/fonts.css");
@import url("../css/menu.css");
@import url("../css/footer.css");
@import url("../css/interna.css");

/* =========================
   VARIÁVEIS (compatível com --amber-* e --cor-*)
   ========================= */

:root{
  /* Paleta “nova” (page) */
  --amber-100:#E9E5D6;
  --amber-400:#C4AC64;
  --teal-900:#0E4656;
  --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);
}

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

header.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  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 !important;
}

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

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

.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: flex-start;
}

.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: 40px;
}

.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 !important;
  }
}
