@font-face {
  font-family: "Aller";
  src:url(fontes/Aller.ttf) format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Aller";
  src:url(fontes/Aller-2.ttf) format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Aller Display";
  src:url(fontes/Aller-Display.ttf) format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --green-950: #0c2923;
  --green-900: #12322c;
  --green-800: #23453e;
  --green-600: #4d746b;
  --cream: #fff4d4;
  --cream-soft: #fff8e7;
  --orange: #ff5a12;
  --white: #ffffff;
  --ink: #263d38;
  --muted: #8f8a75;
  --header-height: 88px;
  --container: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream-soft);
  font-family: "Aller", Arial, sans-serif;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--orange);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section-pad {
  padding: 112px 0;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 70px; /*var(--header-height);*/
  color: var(--green-900);
  background: var(--cream);
  transition: box-shadow 240ms ease, height 240ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 14px 36px rgb(9 35 30 / 16%);
}

.nav-shell {
  display: grid;
  grid-template-columns: minmax(280px, 34%) 1fr;
  height: 100%;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: clamp(28px, 5vw, 90px);
  background: var(--green-800);
}

.brand img {
  width: 100px;
  object-fit: cover;
  object-position: left center;
}

.main-nav {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  padding-right: max(24px, calc((100vw - var(--container)) / 2));
}

.main-nav > a {
  display: inline-flex;
  align-items: center;
  padding: 0 clamp(18px, 2.2vw, 40px);
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: color 180ms ease, background 180ms ease;
}

.main-nav > a:not(.nav-cta):hover,
.main-nav > a:not(.nav-cta):focus-visible {
  color: var(--orange);
}

.main-nav .nav-cta {
  margin-left: 10px;
  color: var(--white);
  background: var(--orange);
  font-weight: 700;
}

.main-nav .nav-cta:hover,
.main-nav .nav-cta:focus-visible {
  background: #df4607;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  color: var(--cream);
  background: var(--green-900);
}

.hero-photo,
.hero-linework,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-photo {
  background-image: url("images/banner-1.jpg");
  background-position: center;
  background-size: cover;
  /*transform: scale(1.03);
  animation: heroZoom 13s ease-out both;*/
}

.hero-linework {
  background-image: url("images/imagem-14.png");
  background-position: center;
  background-size: cover;
  opacity: 0.95;
  mix-blend-mode: screen;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgb(3 34 39 / 90%) 0%, rgb(9 47 45 / 69%) 44%, rgb(11 45 39 / 32%) 100%),
    linear-gradient(0deg, rgb(8 33 29 / 48%) 0%, transparent 52%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: calc(100svh - var(--header-height));
  flex-direction: column;
  justify-content: center;
  padding-top: 42px;
  padding-bottom: 42px;
}

.accent-line {
  display: block;
  width: 66px;
  height: 2px;
  margin-bottom: 30px;
  background: var(--orange);
}

.hero h1 {
  max-width: 570px;
  margin: 0 0 44px;
  font-family: "Aller", Arial, sans-serif;
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.hero h1 strong {
  display: block;
  color: var(--orange);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  font-size: 16px;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--orange);
  font-weight: 700;
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 12px 28px rgb(255 90 18 / 28%);
  background: #e84a08;
}

.button-outline-light {
  border-color: var(--cream);
  color: var(--cream);
  background: rgb(255 255 255 / 3%);
}

.button-outline-light:hover,
.button-outline-light:focus-visible {
  color: var(--green-900);
  background: var(--cream);
}

.button-outline-orange {
  border-color: var(--orange);
  color: var(--orange);
  background: transparent;
}

.button-outline-orange:hover,
.button-outline-orange:focus-visible {
  color: var(--white);
  background: var(--orange);
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 22px;
  left: 50%;
  width: 28px;
  height: 44px;
  border: 1px solid rgb(255 244 212 / 55%);
  border-radius: 18px;
  transform: translateX(-50%);
}

.scroll-cue span {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 4px;
  height: 8px;
  border-radius: 4px;
  background: var(--orange);
  transform: translateX(-50%);
  animation: scrollCue 1.8s ease-in-out infinite;
}

.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.03fr 1fr;
  align-items: center;
  gap: clamp(60px, 8vw, 130px);
}

.about-visual {
  position: relative;
  max-width: 520px;
  margin-inline: auto;
  padding: 30px 28px 0 0;
}

.about-frame {
  position: absolute;
  z-index: 0;
  inset: 0 0 28px 28px;
  border-radius: 18px;
  background: var(--orange);
}

.about-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 0.88;
  border-radius: 16px;
  object-fit: cover;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.eyebrow.light {
  color: var(--cream);
}

.about-copy h2,
.manifesto h2,
.principles h2,
.contact h2,
.numbers h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.03;
}

.about-copy h2 strong,
.manifesto h2 strong {
  display: block;
  font-weight: 700;
}

.about-copy .accent-line,
.manifesto-copy .accent-line {
  margin-top: 34px;
}

.about-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 0 0 28px;
  font-size: 18px;
}

.partner-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 20px;
  margin: 30px 0 36px;
}

.partner-logos img {
  width: 100%;
  height: 64px;
  object-fit: contain;
}

.numbers {
  color: var(--cream);
  background: var(--green-950);
  text-align: center;
}

.numbers h2 {
  margin-bottom: 72px;
  font-size: clamp(36px, 4vw, 58px);
}

.stats-grid {
  display: grid;
  /*grid-template-columns: repeat(4, 1fr);*/
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.stat {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-value {
  display: flex;
  align-items: center; /* Alinha o prefixo (R$/+) ao centro vertical do número */
  justify-content: center;
  color: var(--orange);
  line-height: 0.85;
}

.stat-value small {
  margin: 0 6px 0 0; /* Remove a margem inferior para centralizar perfeitamente */
  font-size: clamp(26px, 2.8vw, 46px);
}
.stat-value strong {
  font-size: clamp(70px, 7vw, 116px);
  font-weight: 700;
  letter-spacing: -0.065em;
}

.stat-unit {
  margin: 22px 0 26px;
  font-size: clamp(30px, 3vw, 50px);
  line-height: 1;
}

.stat-label {
  margin: 0;
  color: #9d967e;
  font-size: 13px;
}

.manifesto {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  color: var(--cream);
  background: var(--green-600);
}

.manifesto-art,
.manifesto-shade {
  position: absolute;
  inset: 0;
}

.manifesto-art {
  left: 38%;
  background: url("images/imagem-15.jpg") center / cover no-repeat;
}

.manifesto-shade {
  background: linear-gradient(90deg, #4d746b 0%, #4d746b 34%, rgb(77 116 107 / 90%) 47%, transparent 78%);
}

.manifesto-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 680px;
  align-items: center;
}

.manifesto-copy {
  width: 46%;
  max-width: 620px;
}

.manifesto-copy h2 {
  margin-bottom: 0;
}

.manifesto-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin: 0 0 20px;
  font-size: 18px;
}

.manifesto-copy .button-row {
  margin-top: 42px;
}

.principles {
  background: var(--cream-soft);
}

.centered {
  text-align: center;
}

.centered-line {
  margin: 34px auto 66px;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.principle-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 14px;
  background: var(--white);
  
  transition: transform 220ms ease, box-shadow 220ms ease;
}


.principle-card:nth-child(1) {
box-shadow: 5px 5px 0 0 #c9c2ae;
}

.principle-card:nth-child(3) {
 box-shadow: -5px 5px 0 #c9c2ae;
}


.principle-card:nth-child(6) {
box-shadow: 5px 5px 0 0 #c9c2ae;
}

.principle-card:nth-child(4) {
 box-shadow: -5px 5px 0 #c9c2ae;
}


.principle-card:nth-child(2),
.principle-card:nth-child(5) {
  box-shadow: none;
}

.principle-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 42px rgb(35 69 62 / 15%);
}

.principle-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: bottom;
  transition: transform 600ms ease;
}

.principle-card:hover img {
  transform: scale(1.035);
}

.principle-card > div {
  padding: 26px 28px 34px;
}

.principle-card h3 {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 23px;
  line-height: 1.15;
}

.principle-card p {
  margin: 0;
  font-size: 18px;
}

.principles-action {
  margin-top: 68px;
}

.contact {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  color: var(--cream);
  background: var(--green-600);
}

.contact-art,
.contact-shade {
  position: absolute;
  inset: 0;
}

.contact-art {
  background: url("images/imagem-16.jpg") left center / cover no-repeat;
  filter: sepia(0.2) hue-rotate(90deg) saturate(0.6);
  opacity: 0.86;
}

.contact-shade {
  background: linear-gradient(90deg, rgb(77 116 107 / 16%) 0%, rgb(77 116 107 / 60%) 48%, #4d746b 76%);
}

.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 530px;
  grid-template-columns: 1.25fr 0.85fr;
  align-items: center;
}

.contact-copy {
  text-align: center;
}

.contact-copy h2 {
  font-weight: 700;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 0 auto 42px;
  font-size: 18px;
}

.centered-buttons {
  justify-content: center;
}








/* ==========================================
   ESTILOS DO RODAPÉ (EXATAMENTE COMO O DESIGN)
   ========================================== */

.site-footer {
  background-color: #0d211a; /* Verde escuro institucional da Vertia */
  color: #ffffff;
  padding: 50px 0 40px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.footer-container {

  max-width:1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-top:40px;
  padding-bottom:40px;

}

/* LINHA 1 (TOPO): Logos na mesma linha */
.footer-row-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo-vertia {
  height: auto;
  height: 50px !important; /* Ajuste proporcional da logo Vertia Inc. */
  width: auto;
  margin-bottom:40px;
}

.footer-partners-logos {
  display: flex;
  align-items: center;
  gap: 28px;
}

.footer-partners-logos img {
  height: auto;
  max-height: 30px; /* Altura ideal dos logos parceiros para alinhar com o topo */
  width: auto;
  object-fit: contain;
}

/* LINHA 2 (MEIO / BASE): Três colunas alinhadas */
.footer-row-bottom {
  display: grid;
  grid-template-columns: 280px 1fr auto; /* Larguras das colunas */
  align-items: start; /* Alinha o copyright perfeitamente com a base dos textos */
  gap: 40px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

/* Coluna 1: Contatos */
.footer-contacts {
  gap: 12px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.contact-link:hover {
  opacity: 0.8;
}

.contact-icon {
  color: #e66b23; /* Laranja da marca */
  flex-shrink: 0;
}

/* Coluna 2: Links de Navegação */
.footer-nav {
  gap: 10px;
}

.footer-nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: #e66b23;
}


.footer-copyright {
  align-self: end; /* <--- MANTÉM APENAS O COPYRIGHT NA BASE */
}

/* Coluna 3: Copyright */
.footer-copyright p {
  margin: 0;
  font-size: 0.85rem;
  color: #d0d8d4;
  white-space: nowrap;
  text-align: right;
  
}

/* ==========================================
   RESPONSIVIDADE (Tablets e Celulares)
   ========================================== */

@media (max-width: 900px) {
  .footer-row-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .footer-partners-logos {
    flex-wrap: wrap;
    gap: 20px;
  }

  .footer-row-bottom {
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 24px;
  }

  .footer-copyright p {
    text-align: left;
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 35px 0 25px;
  }

  .footer-partners-logos img {
    max-height: 22px;
  }
}














/* ==========================================
   RESPONSIVIDADE (Tablets e Celulares)
   ========================================== */
@media (max-width: 850px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .footer-partners-col {
    align-items: flex-start;
    gap: 30px;
    width: 100%;
  }

  .footer-logos {
    flex-wrap: wrap;
    gap: 20px;
  }

  .copyright-text {
    text-align: left;
  }
}

/* Efeito ao passar o mouse (opcional) */
.footer-logos img:hover {
  opacity: 0.8;
}

/* Ajustes para dispositivos móveis (telas de até 600px) */
@media (max-width: 600px) {
  .footer-logos {
    gap: 20px; /* Reduz o espaço em telas menores */
  }

  .footer-logos img {
    max-height: 32px; /* Reduz ligeiramente a altura dos logos em telas pequenas */
    max-width: 120px;
  }
}

.footer-partners p {
  margin: 0;
  font-size: 14px;
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay,
.reveal-delay-1 {
  transition-delay: 100ms;
}

.reveal-delay-2 {
  transition-delay: 180ms;
}

.reveal-delay-3 {
  transition-delay: 260ms;
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1.03); }
}

@keyframes scrollCue {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.35; }
  50% { transform: translate(-50%, 12px); opacity: 1; }
}

@media (max-width: 1020px) {
  :root {
    --header-height: 76px;
  }

  .nav-shell {
    grid-template-columns: 270px 1fr;
  }

  .brand {
    justify-content: flex-start;
    padding-left: 28px;
    padding-right: 20px;
  }

  .main-nav > a {
    padding: 0 14px;
    font-size: 12px;
  }

  .about-grid {
    gap: 54px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 62px 24px;
  }

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

  .contact-grid {
    grid-template-columns: 0.85fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 0.6fr;
  }

  .footer-partners {
    grid-column: 1 / -1;
    min-height: 150px;
    flex-direction: row;
    align-items: flex-end;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section-pad {
    padding: 78px 0;
  }

  .nav-shell {
    display: flex;
    justify-content: space-between;
    background: var(--green-800);
  }

  .brand {
    padding-left: 16px;
  }

  .brand img {
    width: 150px;
    height: 64px;
  }

  .menu-toggle {
    display: flex;
    width: 76px;
    height: 76px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 0;
    color: var(--cream);
    background: var(--orange);
  }

  .menu-toggle span {
    width: 28px;
    height: 2px;
    background: currentColor;
    transition: transform 220ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    z-index: 99;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 14px 16px 22px;
    background: var(--cream);
    box-shadow: 0 22px 40px rgb(13 45 39 / 18%);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav > a {
    min-height: 54px;
    justify-content: center;
    font-size: 14px;
  }

  .main-nav .nav-cta {
    margin: 6px 0 0;
  }

  .hero,
  .hero-content {
    min-height: calc(100svh - var(--header-height));
  }

  .hero-photo {
    background-position: 58% center;
  }

  .hero-linework {
    background-position: 58% center;
    opacity: 0.65;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgb(3 34 39 / 92%) 0%, rgb(7 40 38 / 74%) 73%, rgb(9 43 38 / 35%) 100%);
  }

  .hero h1 {
    max-width: 470px;
    font-size: clamp(46px, 13vw, 64px);
  }

  .scroll-cue {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .about-visual {
    order: 2;
    width: min(100%, 540px);
  }

  .about-copy {
    order: 1;
  }

  .partner-logos {
    gap: 8px;
  }

  .numbers h2 {
    margin-bottom: 58px;
  }

  .manifesto,
  .manifesto-inner {
    min-height: 740px;
  }

  .manifesto-art {
    left: 0;
    background-position: 63% center;
  }

  .manifesto-shade {
    background: linear-gradient(90deg, rgb(77 116 107 / 97%) 0%, rgb(77 116 107 / 88%) 62%, rgb(77 116 107 / 36%) 100%);
  }

  .manifesto-copy {
    width: 90%;
  }

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

  .principle-card {
    min-height: 0;
  }

  .principle-card img {
    height: 210px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    padding: 78px 0;
  }

  .contact-grid > div:first-child {
    display: none;
  }

  .contact-art {
    background-position: 36% center;
  }

  .contact-shade {
    background: rgb(62 103 95 / 80%);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .footer-nav {
    padding-top: 0;
  }

  .footer-partners {
    grid-column: auto;
    min-height: 0;
    align-items: flex-start;
    gap: 40px;
    flex-direction: column;
  }

  .footer-partners img {
    width: min(100%, 440px);
  }

  .footer-partners p {
    text-align: left;
  }
}

@media (max-width: 500px) {
  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero h1 {
    font-size: 45px;
  }

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

  .stat {
    padding-bottom: 34px;
    border-bottom: 1px solid rgb(255 244 212 / 12%);
  }

  .stat:last-child {
    border-bottom: 0;
  }

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

  .partner-logos img {
    height: 70px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

