/* =========================
   RESET
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =========================
   VARIÁVEIS
========================= */

:root {

  --green: #163A2E;

  --gold: #A28942;

  --white: #FFFFFF;

  --light: #F5F5F5;

  --dark: #1B1B1B;

}

html {
  scroll-behavior: smooth;
  background: var(--green);
}

#home,
#quem-protegemos,
#servicos,
#o-escritorio,
#contato {
  scroll-margin-top: 100px;
}

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

body {
  background: var(--green);

  color: var(--dark);

  font-family: 'Montserrat', sans-serif;

  overflow-x: hidden;
}

/* =========================
   HEADER
========================= */

.navbar {
  position: fixed;

  top: 0;
  left: 0;

  width: 100%;

  z-index: 999;

  background: transparent;

  transition: all 0.4s ease;

  padding-top: 14px;
  padding-bottom: 14px;
}

.navbar.scrolled {
  background: var(--green);

  padding-top: 14px;
  padding-bottom: 14px;
}

.navbar-container {
  width: 100%;

  max-width: 1600px;

  margin: 0 auto;

  padding: 0 100px;

  display: flex;

  justify-content: space-between;

  align-items: center;
}

.logo img {
  height: 75px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

/* =========================
   MENU DESKTOP
========================= */

.menu {
  display: flex;

  gap: 42px;
}

.menu a {
  position: relative;

  color: var(--white);

  text-decoration: none;

  font-size: 14px;

  font-weight: 400;

  letter-spacing: 1px;

  text-transform: capitalize;

  transition: 0.3s ease;
}

.menu a::after {
  content: '';

  position: absolute;

  left: 0;
  bottom: -6px;

  width: 0%;

  height: 1px;

  background: var(--gold);

  transition: width 0.35s ease;
}

.menu a:hover {
  color: var(--gold);
}

.menu a:hover::after {
  width: 100%;
}

/* =========================
   MENU MOBILE
========================= */

.mobile-toggle {

  display: none;

  flex-direction: column;

  gap: 5px;

  cursor: pointer;

  z-index: 1001;
}

.mobile-toggle span {

  width: 26px;

  height: 2px;

  background: var(--white);

  transition: 0.3s ease;
}

.mobile-menu {
  display: none;
}

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

.hero {
  position: relative;

  min-height: 100vh;

  display: flex;

  align-items: center;

  overflow: hidden;
}

.hero-background {
  position: absolute;

  inset: 0;

  overflow: hidden;
}

.hero-image {
  position: absolute;

  inset: 0;

  background-size: cover;

  background-position: center;

  background-repeat: no-repeat;

  opacity: 0;

  transition: opacity 1s ease;
}

.hero-image.active {
  opacity: 1;
}

.image-1 {
  background-image: url('assets/images/empresa.webp');
}

.image-2 {
  background-image: url('assets/images/agro.webp');
}

@keyframes fade1 {

  0% {
    opacity: 1;
  }

  45% {
    opacity: 1;
  }

  55% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }

}

@keyframes fade2 {

  0% {
    opacity: 0;
  }

  45% {
    opacity: 0;
  }

  55% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }

}

.hero-overlay {
  position: absolute;

  inset: 0;

  background: rgba(24, 24, 24, 0.75);
}

.hero-content {
  position: relative;

  z-index: 2;

  width: 100%;

  max-width: 1600px;

  margin: 0 auto;

  padding: 0 100px;

  padding-top: 100px;

  display: flex;

  flex-direction: column;
}

/* =========================
   HERO INDICATORS
========================= */

.hero-indicators {
  position: absolute;
  left: 50%;
  bottom: 50px;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 10px;
}

.indicator {
  width: 55px;
  height: 2px;
  background: rgba(255,255,255,0.25);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* BARRA BRANCA (progresso) */
.indicator::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: #fff;
}

/* SOMENTE A ATIVA ANIMA */
.indicator.active::after {
  animation: fillBar 6s linear forwards;
}

@keyframes fillBar {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

/* TÍTULO */

.hero-title {
  max-width: 1100px;

  color: var(--white);

  font-size: 40px;

  line-height: 50px;

  letter-spacing: 0px;

  font-weight: 300;

  margin-bottom: 20px;
}

/* TEXTO */

.description {
  max-width: 720px;

  color: var(--white);

  font-size: 18px;

  line-height: 1.5;

  font-weight: 300;

  margin-bottom: 45px;
}

/* BOTÃO */

.hero-button {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  width: fit-content;

  padding: 18px 34px;

  border: 1px solid var(--gold);

  color: var(--white);

  text-decoration: none;

  font-size: 13px;

  letter-spacing: 2px;

  text-transform: uppercase;

  transition: all 0.35s ease;
}

.hero-button:hover {
  background: var(--gold);

  color: var(--white);
}

.hero-buttons {
  display: flex;

  gap: 20px;

  align-items: center;
}

.secondary-button {
  opacity: 0.85;
}

.secondary-button:hover {
  opacity: 1;
}

/* =========================
   SEÇÃO 2 — QUEM PROTEGEMOS
========================= */

.s2 {
  position: relative;
  overflow: hidden;

  padding: 100px 0;

  background-color: var(--dark);

  background-image:
    linear-gradient(
      rgba(162,137,66,0.04) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(162,137,66,0.04) 1px,
      transparent 1px
    );

  background-size: 60px 60px;
}

/* GLOW DECORATIVO */

.s2::after {
  content: '';

  position: absolute;

  bottom: -150px;
  left: -150px;

  width: 500px;
  height: 500px;

  background:
    radial-gradient(
      circle,
      rgba(162,137,66,0.05) 0%,
      transparent 70%
    );

  pointer-events: none;
}

/* =========================
   GRID PRINCIPAL
========================= */

.s2-grid {
  position: relative;
  z-index: 1;

  max-width: 1600px;

  margin: 0 auto;

  padding: 0 100px;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 80px;

  align-items: start;
}

/* =========================
   COLUNA ESQUERDA
========================= */

.s2-esquerda {
  display: flex;
  flex-direction: column;
}

/* TAG */

.s2-tag-wrap {
  display: flex;

  align-items: center;

  gap: 16px;

  margin-bottom: 36px;
}

.s2-tag {
  color: var(--gold);

  font-size: 10px;

  font-weight: 600;

  letter-spacing: 3px;

  text-transform: uppercase;

  white-space: nowrap;
}

.s2-tag-linha {
  flex: 1;

  height: 1px;

  background:
    linear-gradient(
      to right,
      rgba(162,137,66,0.6),
      transparent
    );
}

/* TÍTULO */

.s2-titulo {
  color: var(--white);

  font-size: 30px;

  font-weight: 300;

  line-height: 40px;

  letter-spacing: 0px;

  margin-bottom: 40px;
}

/* DIVISÓRIA */

.s2-divisoria {
  width: 40px;
  height: 1px;

  background: var(--gold);

  opacity: 0.6;

  margin-bottom: 36px;
}

/* TEXTOS */

.s2-textos {
  display: flex;

  flex-direction: column;

  gap: 20px;
}

.s2-texto {
  color: #FFFFFF;

  font-size: 15px;

  font-weight: 300;

  line-height: 25px;
}

/* =========================
   COLUNA DIREITA
========================= */

.s2-direita {
  display: flex;

  flex-direction: column;

  gap: 16px;

  padding-top: 8px;
}

/* =========================
   CARD
========================= */

.s2-card {
  position: relative;

  overflow: hidden;

  display: grid;

  grid-template-columns: auto 1fr;

  gap: 28px;

  align-items: start;

  padding: 36px 40px;

  border-radius: 3px;

  border:
    1px solid rgba(255,255,255,0.07);

  background: #1E1E1E;

  cursor: default;

  transition:
    border-color 0.4s,
    background 0.4s,
    transform 0.3s;
}

/* LINHA SUPERIOR */

.s2-card::before {
  content: '';

  position: absolute;

  top: 0;
  left: 0;
  right: 0;

  height: 1px;

  background:
    linear-gradient(
      to right,
      transparent,
      rgba(255,255,255,0.5),
      transparent
    );

  transform: scaleX(0);

  transform-origin: left;

  transition: transform 0.5s ease;
}

/* HOVER */

.s2-card:hover {
  transform: translateY(-2px);

  background: #232323;

  border-color:
    rgba(255,255,255,0.16);
}

.s2-card:hover::before {
  transform: scaleX(1);
}

/* =========================
   ÍCONE
========================= */

.s2-card-icon {
  width: 50px;
  height: 50px;

  flex-shrink: 0;

  display: flex;

  align-items: center;

  justify-content: center;

  color: var(--gold);

  border:
    1px solid rgba(255,255,255,0.1);

  transition:
    border-color 0.3s,
    background 0.3s;
}

.s2-card-icon img {
  width: 35px;

  height: 35px;

  object-fit: contain;

  display: block;

    filter:
    brightness(0)
    saturate(100%)
    invert(62%)
    sepia(28%)
    saturate(614%)
    hue-rotate(7deg)
    brightness(91%)
    contrast(88%);
}

.s2-card:hover .s2-card-icon {
  background:
    rgba(162,137,66,0.06);

  border-color:
    rgba(162,137,66,0.35);
}

/* =========================
   CONTEÚDO
========================= */

.s2-card-title {
  color: var(--white);

  font-size: 18px;

  font-weight: 400;

  line-height: 22px;

  margin-bottom: 4px;
}

.s2-card-sub {
  color: var(--gold);

  font-size: 10px;

  font-weight: 600;

  letter-spacing: 3px;

  text-transform: uppercase;

  margin-bottom: 18px;
}

/* LISTA */

.s2-card-list {
  list-style: none;
}

.s2-card-list li {
  display: flex;

  align-items: center;

  gap: 12px;

  padding: 8px 0;

  border-bottom:
    1px solid rgba(255,255,255,0.05);

  color:
    rgba(255,255,255,0.4);

  font-size: 15px;

  font-weight: 300;

  transition: color 0.3s;
}

.s2-card-list li:last-child {
  border-bottom: none;
}

/* LINHA DOS ITENS */

.s2-card-list li::before {
  content: '';

  flex-shrink: 0;

  width: 14px;
  height: 1px;

  background: var(--gold);

  opacity: 0.45;

  transition:
    width 0.3s,
    opacity 0.3s;
}

/* HOVER DOS ITENS */

.s2-card:hover .s2-card-list li {
  color:
    rgba(255,255,255,0.72);
}

.s2-card:hover .s2-card-list li::before {
  width: 20px;

  opacity: 1;
}

/* ================================
   SEÇÃO 3 — SERVIÇOS
================================ */

.services-section {
  padding: 110px 0;

  background: #163A2E;

  overflow: hidden;
}

.services-container {
  width: 100%;

  max-width: 1600px;

  margin: 0 auto;

  padding: 0 100px;
}

/* =========================
   HEADER
========================= */

.services-header {
  margin-bottom: 60px;
}

/* TAG */

.services-tag-wrap {
  display: flex;

  align-items: center;

  gap: 16px;

  margin-bottom: 36px;

  width: fit-content;
}

.services-tag {
  color: var(--gold);

  font-size: 10px;

  font-weight: 600;

  letter-spacing: 3px;

  text-transform: uppercase;

  white-space: nowrap;
}

.services-tag-line {
  width: 530px;

  height: 1px;

  background:
    linear-gradient(
      to right,
      rgba(162,137,66,0.6),
      transparent
    );
}

/* TÍTULO */

.services-title {
  max-width: 900px;

  color: var(--white);

  font-size: 30px;

  font-weight: 300;

  line-height: 40px;

  letter-spacing: -0.3px;
}

/* =========================
   SLIDER
========================= */

.services-slider-wrapper {
  overflow: hidden;

  width: calc(100vw - 100px);

  margin-left: 0;
}

.services-track {
  display: flex;

  gap: 28px;

  width: max-content;

  padding-right: 100px;

  transition: transform 0.5s ease;
}

/* =========================
   CARD
========================= */

.service-card {
  position: relative;

  flex: 0 0 430px;

  height: 520px;

  overflow: hidden;

  background: #1A1A1A;

  cursor: pointer;
}

/* LINHA INFERIOR */

.service-card::after {
  content: '';

  position: absolute;

  left: 0;
  bottom: 0;

  width: 0%;

  height: 2px;

  background: var(--gold);

  z-index: 3;

  transition: width 0.5s ease;
}

/* HOVER */

.service-card:hover::after {
  width: 100%;
}

/* IMAGEM */

.service-image {
  position: absolute;

  inset: 0;

  background-size: cover;

  background-position: center;

  transition:
    transform 0.7s ease,
    filter 0.7s ease;
}

/* OVERLAY */

.service-overlay {
  position: absolute;

  inset: 0;

  background: rgba(0,0,0,0.38);

  z-index: 1;

  transition: background 0.5s ease;
}

/* HOVER */

.service-card:hover .service-image {
  transform: scale(1.05);

  filter: blur(1px);
}

.service-card:hover .service-overlay {
  background: rgba(0,0,0,0.58);
}

/* =========================
   CONTEÚDO
========================= */

.service-content {
  position: absolute;

  inset: 0;

  z-index: 2;

  padding: 32px;

  display: flex;

  flex-direction: column;

  justify-content: flex-end;
}

/* NÚMERO */

.service-number {
  color: var(--gold);

  font-size: 10px;

  font-weight: 600;

  letter-spacing: 3px;

  margin-bottom: 10px;
}

/* TÍTULO */

.service-content h3 {
  color: var(--white);

  font-size: 18px;

  line-height: 22px;

  font-weight: 400;

  margin-bottom: 12px;
}

/* TEXTO */

.service-content p {
  color: rgba(255,255,255,0.75);

  font-size: 15px;

  line-height: 20px;

  font-weight: 300;
}

/* =========================
   CONTROLES
========================= */

.services-controls {
  display: flex;

  gap: 14px;

  justify-content: flex-end;

  margin-top: 50px;
}

.services-button {
  width: 52px;
  height: 52px;

  border: 1px solid rgba(255,255,255,0.12);

  background: transparent;

  display: flex;

  align-items: center;

  justify-content: center;

  cursor: pointer;

  transition:
    border-color 0.3s ease,
    background 0.3s ease;
}

.services-button:hover {
  border-color: var(--gold);

  background: rgba(162,137,66,0.06);
}

.services-button svg {
  width: 18px;
  height: 18px;

  fill: none;

  stroke: var(--white);

  stroke-width: 1.5;
}

/* =========================
   SEÇÃO 4 — O ESCRITÓRIO
========================= */

.s4 {
  position: relative;

  overflow: hidden;

  padding: 100px 0;

  background-color: var(--dark);

  background-image:
    linear-gradient(
      rgba(162,137,66,0.04) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(162,137,66,0.04) 1px,
      transparent 1px
    );

  background-size: 60px 60px;
}

.s4::after {
  content: '';

  position: absolute;

  right: -150px;
  bottom: -150px;

  width: 500px;
  height: 500px;

  background:
    radial-gradient(
      circle,
      rgba(162,137,66,0.05) 0%,
      transparent 70%
    );

  pointer-events: none;
}

/* =========================
   CONTAINER
========================= */

.s4-container {
  width: 100%;

  max-width: 1600px;

  margin: 0 auto;

  padding: 0 100px;

  position: relative;

  z-index: 1;
}

/* =========================
   TAG
========================= */

.s4-tag-wrap {
  display: flex;

  align-items: center;

  gap: 16px;

  margin-bottom: 48px;
}

.s4-tag {
  font-size: 10px;

  font-weight: 600;

  letter-spacing: 3px;

  text-transform: uppercase;

  color: var(--gold);

  white-space: nowrap;
}

.s4-tag-linha {
  flex: 1;

  height: 1px;

  background:
    linear-gradient(
      to right,
      rgba(162,137,66,0.6),
      transparent
    );
}

/* =========================
   GRID
========================= */

.s4-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 20px;

  align-items: stretch;
}

/* =========================
   CARD IMAGEM
========================= */

.s4-card-img {
  position: relative;

  overflow: hidden;

  min-height: 620px;

  border-radius: 3px;
}

.s4-card-img-bg {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(0,0,0,0.55) 0%,
      transparent 60%
    ),
    url('assets/images/thiago.webp')
    center top/cover no-repeat;

  transition: transform 0.6s ease;
}

.s4-card-img:hover .s4-card-img-bg {
  transform: scale(1.03);
}

/* BADGE */

.s4-card-img-badge {
  position: absolute;

  left: 36px;
  right: 36px;
  bottom: 36px;

  z-index: 2;
}

/* LINHA LATERAL */

.s4-card-img::after {
  content: '';

  position: absolute;

  top: 36px;
  right: 0;
  bottom: 36px;

  width: 1px;

  background:
    linear-gradient(
      to bottom,
      transparent,
      rgba(162,137,66,0.3) 30%,
      rgba(162,137,66,0.3) 70%,
      transparent
    );
}

/* =========================
   CARD TEXTO
========================= */

.s4-card-texto {
  position: relative;

  overflow: hidden;

  display: flex;

  flex-direction: column;

  padding: 52px 48px;

  background: #1E1E1E;

  border:
    1px solid rgba(255,255,255,0.07);

  border-radius: 3px;
}

.s4-card-texto::before {
  content: '';

  position: absolute;

  top: -60px;
  right: -60px;

  width: 200px;
  height: 200px;

  border-radius: 50%;

  border:
    1px solid rgba(162,137,66,0.08);

  pointer-events: none;
}

/* TÍTULO */

.s4-card-titulo {
  font-size: 30px;

  font-weight: 300;

  line-height: 40px;

  letter-spacing: -0.2px;

  color: var(--white);

  margin-bottom: 32px;
}

/* SEPARADOR */

.s4-sep {
  width: 36px;

  height: 1px;

  background: var(--gold);

  opacity: 0.6;

  margin-bottom: 32px;

  flex-shrink: 0;
}

/* TEXTOS */

.s4-textos {
  display: flex;

  flex-direction: column;

  gap: 18px;

  flex: 1;
}

.s4-texto {
  font-size: 15px;

  font-weight: 300;

  line-height: 25px;

  text-align: left;

  color:
    #FFFFFF;
}

/* FOOTER */

.s4-card-footer {
  display: flex;

  align-items: center;

  gap: 16px;

  margin-top: 36px;

  padding-top: 24px;

  border-top:
    1px solid rgba(255,255,255,0.06);
}

.s4-footer-nome {
  font-size: 15px;

  font-weight: 400;

  letter-spacing: 1px;

  color: var(--white);
}

.s4-footer-cargo {
  font-size: 13px;

  font-weight: 400;

  letter-spacing: 1px;

  text-transform: uppercase;

  color: var(--gold);
}


/* =========================
   SEÇÃO 5 — CONTATO
========================= */

.s5 {
  position: relative;

  overflow: hidden;

  min-height: 400px;

  display: flex;

  align-items: center;
}

/* =========================
   BACKGROUND
========================= */

.s5-bg {
  position: absolute;

  inset: 0;

  background:
    url('assets/images/banner.webp')
    center/cover no-repeat;

  z-index: 0;
}

/* =========================
   OVERLAY
========================= */

.s5-overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      105deg,
      rgba(10,10,10,0.90) 0%,
      rgba(22,58,46,0.78) 50%,
      rgba(10,10,10,0.90) 100%
    );

  z-index: 1;
}

/* GRID DECORATIVO */

.s5-overlay::after {
  content: '';

  position: absolute;

  inset: 0;

  background-image:
    linear-gradient(
      rgba(162,137,66,0.04) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(162,137,66,0.04) 1px,
      transparent 1px
    );

  background-size: 60px 60px;
}

/* =========================
   CONTAINER
========================= */

.s5-container {
  position: relative;

  z-index: 2;

  width: 100%;

  max-width: 1600px;

  margin: 0 auto;

  padding: 70px 100px;
}

/* =========================
   TAG
========================= */

.s5-tag-wrap {
  display: flex;

  align-items: center;

  gap: 16px;

  margin-bottom: 36px;
}

.s5-tag {
  font-size: 10px;

  font-weight: 600;

  letter-spacing: 3px;

  text-transform: uppercase;

  color: var(--gold);

  white-space: nowrap;
}

.s5-tag-linha {
  flex: 1;

  height: 1px;

  background:
    linear-gradient(
      to right,
      rgba(162,137,66,0.6),
      transparent
    );
}

/* =========================
   GRID
========================= */

.s5-grid {
  display: grid;

  grid-template-columns: 1fr auto;

  gap: 80px;

  align-items: center;
}

/* =========================
   ESQUERDA
========================= */

.s5-esquerda {
  display: flex;

  flex-direction: column;
}

.s5-titulo {
  max-width: 560px;

  font-size: 30px;

  font-weight: 300;

  line-height: 40px;

  letter-spacing: -0.3px;

  color: var(--white);

  margin-bottom: 20px;
}

.s5-titulo em {
  font-style: normal;

  color: var(--gold);
}

.s5-sep {
  width: 36px;

  height: 1px;

  background: var(--gold);

  opacity: 0.5;

  margin-bottom: 20px;
}

.s5-texto {
  max-width: 500px;

  font-size: 15px;

  font-weight: 300;

  line-height: 25px;

  color:
    #FFFFFF;
}

/* =========================
   DIREITA
========================= */

.s5-direita {
  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 14px;

  flex-shrink: 0;
}

/* =========================
   BOTÃO
========================= */

.s5-btn {
  position: relative;

  overflow: hidden;

  isolation: isolate;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 18px 40px;

  border:
    1px solid var(--gold);

  background: transparent;

  color: var(--white);

  text-decoration: none;

  font-family: 'Montserrat', sans-serif;

  font-size: 13px;

  font-weight: 400;

  letter-spacing: 3px;

  text-transform: uppercase;

  white-space: nowrap;

  cursor: pointer;

  transition:
    color 0.4s ease;
}

.s5-btn::before {
  content: '';

  position: absolute;

  inset: 0;

  background: var(--gold);

  transform: scaleX(0);

  transform-origin: left;

  transition:
    transform 0.4s ease;

  z-index: -1;
}

.s5-btn:hover::before {
  transform: scaleX(1);
}

/* =========================
   NOTA
========================= */

.s5-btn-nota {
  font-size: 12px;

  font-weight: 400;

  letter-spacing: 1px;

  text-align: center;

  color:
    #FFFFFF;
}

/* =========================
   RODAPÉ
========================= */

.footer {
  position: relative;

  overflow: hidden;

  background: var(--green);

  padding: 100px 0 0;
}

/* LINHA TOPO */

.footer::before {
  content: '';

  position: absolute;

  top: 0;
  left: 100px;
  right: 100px;

  height: 1px;

  background:
    linear-gradient(
      to right,
      transparent,
      rgba(162,137,66,0.5) 20%,
      rgba(162,137,66,0.5) 80%,
      transparent
    );
}

/* =========================
   CONTAINER
========================= */

.footer-container {
  width: 100%;

  max-width: 1600px;

  margin: 0 auto;
}

/* =========================
   GRID
========================= */

.footer-grid {
  display: grid;

  grid-template-columns:
    1.4fr 1fr 1fr 1fr;

  gap: 60px;

  padding: 0 100px 50px;
}

/* =========================
   COLUNA 1
========================= */

.footer-col1 {
  display: flex;

  flex-direction: column;
}

/* LOGO */

.footer-logo {
  display: block;

  width: auto;

  height: 100px;

  object-fit: contain;

  object-position: left;

  margin-bottom: 28px;
}

/* TEXTO */

.footer-desc {
  max-width: 220px;

  font-size: 12px;

  font-weight: 400;

  line-height: 20px;

  color:
    #FFFFFF;

  margin-bottom: 28px;
}

/* =========================
   REDES SOCIAIS
========================= */

.footer-socials {
  display: flex;

  gap: 10px;
}

.footer-social {
  width: 40px;

  height: 40px;

  display: flex;

  align-items: center;

  justify-content: center;

  border:
    1px solid rgba(255,255,255,0.15);

  color:
    #FFFFFF;

  text-decoration: none;

  transition:
    border-color 0.3s,
    color 0.3s,
    background 0.3s;
}

.footer-social:hover {
  border-color: var(--gold);

  background:
    rgba(162,137,66,0.08);

  color: var(--gold);
}

.footer-social svg {
  width: 20px;

  height: 20px;

  stroke: currentColor;

  fill: none;

  stroke-width: 1.5;

  stroke-linecap: round;

  stroke-linejoin: round;
}

/* =========================
   COLUNAS
========================= */

.footer-col {
  display: flex;

  flex-direction: column;
}

/* TÍTULOS */

.footer-col-titulo {
  font-size: 12px;

  font-weight: 600;

  letter-spacing: 1px;

  text-transform: uppercase;

  color: var(--gold);

  margin-bottom: 24px;

  padding-bottom: 16px;

  border-bottom:
    1px solid rgba(255,255,255,0.07);
}

/* LINKS */

.footer-links {
  list-style: none;

  display: flex;

  flex-direction: column;

  gap: 12px;
}

.footer-links li a,
.footer-links li span {
  display: block;

  font-size: 12px;

  font-weight: 400;

  text-decoration: none;

  color:
    #FFFFFF;
}

/* =========================
   CONTATO
========================= */

.footer-contato-item {
  display: flex;

  align-items: flex-start;

  gap: 12px;

  margin-bottom: 14px;
}

.footer-contato-item:last-child {
  margin-bottom: 0;
}

/* ÍCONE */

.footer-contato-icon {
  width: 14px;

  height: 14px;

  flex-shrink: 0;

  color: #FFFFFF;

  margin-top: 2px;
}

.footer-contato-icon svg {
  width: 14px;

  height: 14px;

  stroke: currentColor;

  fill: none;

  stroke-width: 1.5;

  stroke-linecap: round;

  stroke-linejoin: round;
}

/* TEXTO */

.footer-contato-texto {
  font-size: 12px;

  font-weight: 400;

  line-height: 20px;

  color:
    #FFFFFF;
}

/* =========================
   FOOTER BOTTOM
========================= */

.footer-bottom {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  padding: 20px 100px;

  border-top:
    1px solid rgba(255,255,255,0.06);
}

/* COPYRIGHT */

.footer-copy,
.footer-oab {
  font-size: 12px;

  font-weight: 400;

  letter-spacing: 0.5px;

  color:
    #FFFFFF;
}

/* =========================================
   TABLET
   769px até 1024px
========================================= */

@media (min-width: 769px) and (max-width: 1024px) {

  /* =========================
     CONTAINERS
  ========================= */

  .navbar-container,
  .hero-content,
  .s2-grid,
  .services-header,
  .services-container,
  .s4-grid,
  .s5-container,
  .footer-grid,
  .footer-bottom {

    padding-left: 40px;
    padding-right: 40px;

  }

  /* =========================
     NAVBAR
  ========================= */

  .menu {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .navbar {
    height: 100px;
  }

  .logo img {
    height: 48px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
  }

  /* MENU MOBILE */

  .mobile-menu {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 100vh;

    background: var(--green);

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    gap: 32px;

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition: all .35s ease;

    z-index: 998;

  }

  .mobile-menu.active {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

  }

  .mobile-menu a {

    font-size: 28px;

    font-weight: 300;

    letter-spacing: 2px;

    text-transform: uppercase;

    color: var(--white);

    text-decoration: none;

  }

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

  .hero {

    min-height: 100vh;

  }

  .hero-title {

    font-size: 44px;

    line-height: 1.2;

    font-weight: 300;

  }

  .description {

    font-size: 16px;

    line-height: 1.8;

  }

  .hero-buttons {

    display: flex;

    flex-direction: row;

    gap: 16px;

    align-items: center;

  }

  .hero-button {

    width: auto;

    min-width: 220px;

  }

  /* =========================
     SEÇÃO 2
  ========================= */

  .s2-grid {

    grid-template-columns: 1fr;

    gap: 60px;

  }

  .s2-titulo {

    font-size: 38px;

    line-height: 1.25;

  }

  .s2-card {

    padding: 40px;

  }

  /* =========================
     SEÇÃO 3
     SERVIÇOS
  ========================= */

  .services-title {

    font-size: 34px;

    line-height: 1.3;

  }

  .services-tag-line {

    width: 300px;

  }

  .service-card {

    flex: 0 0 380px;

    width: 380px;

    height: 480px;

  }

  .service-content h3 {

    font-size: 22px;

    line-height: 1.3;

  }

  .service-content p {

    font-size: 15px;

    line-height: 1.8;

  }

  /* =========================
     SEÇÃO 4
  ========================= */

  .s4-grid {

    grid-template-columns: 1fr;

  }

  .s4-card-img {

    min-height: 600px;

  }

  .s4-card-titulo {

    font-size: 36px;

    line-height: 1.2;

  }

  /* =========================
     SEÇÃO 5
  ========================= */

  .s5-grid {

    grid-template-columns: 1fr;

    gap: 50px;

  }

  .s5-bg {

    background-position: left center;

  }

  .s5-titulo {

    font-size: 38px;

    line-height: 1.25;

  }

  /* =========================
     FOOTER
  ========================= */

  .footer-grid {

    grid-template-columns: 1fr 1fr;

    gap: 50px;

  }

  .footer-col-titulo {

    font-size: 11px;

    letter-spacing: 3px;

  }

  .footer-links li a,
  .footer-links li span,
  .footer-contato-texto {

    font-size: 14px;

    line-height: 1.8;

  }

  .footer-desc {

    font-size: 14px;

    line-height: 1.8;

  }

  .footer-copy {

    font-size: 12px;

  }

}

/* =========================================
   RESPONSIVIDADE MOBILE
========================================= */

@media (max-width: 768px) {

  /* =========================
     ESTRUTURA GERAL
  ========================= */

  .navbar-container,
  .hero-content,
  .s2-grid,
  .services-header,
  .s4-container,
  .s5-container,
  .footer-grid,
  .footer-bottom {
    padding-left: 10px;
    padding-right: 10px;
  }

  .s2-grid,
  .s4-grid,
  .s5-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  /* =========================
   NAVBAR
========================= */

.navbar {
  height: 100px;
}

.navbar-container {

  padding-left: 24px;
  padding-right: 24px;

  display: flex;

  justify-content: space-between;

  align-items: center;
}

.menu {
  display: none;
}

.mobile-toggle {
  display: flex;
}

.logo img {
  height: 65px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

/* =========================
   MENU MOBILE
========================= */

.mobile-menu {

  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  height: 100vh;

  background: 
    linear-gradient(
      rgba(162,137,66,0.08) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(162,137,66,0.08) 1px,
      transparent 1px
    ),
    var(--green);

  background-size:
    40px 40px,
    40px 40px,
    auto;

  display: flex;

  flex-direction: column;

  justify-content: center;

  align-items: center;

  gap: 32px;

  opacity: 0;

  visibility: hidden;

  pointer-events: none;

  transition: all 0.35s ease;

  z-index: 998;

}

.mobile-menu.active {

  opacity: 1;

  visibility: visible;

  pointer-events: auto;

}

.mobile-menu a {

  color: var(--white);

  text-decoration: none;

  font-size: 20px;

  font-weight: 400;

  letter-spacing: 2px;

  text-transform: uppercase;

}

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

  .hero {
    min-height: 90vh;
  }

  .hero-content {
    padding-top: 120px;
  }

  .hero-title {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: -0.3px;
    text-align: left;
  }

  .description {
    font-size: 13px;
    font-weight: 400;
    line-height: 25px;
    text-align: left;
  }

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

  .hero-button {
    width: 180px;
    display: flex;
     font-size: 10px;
     font-weight: 600;
    letter-spacing: 0.5px;
    align-items: center;
    justify-content: center;
  }

.image-1 {
  background-image: url('assets/images/empresa.webp');

  background-position: 35% center;
}

.image-2 {
  background-image: url('assets/images/agro.webp');

  background-position: 35% center;
}

  /* =========================
     SEÇÃO 2
     QUEM PROTEGEMOS
  ========================= */

  .s2 {
    padding: 80px 0;
  }

  .s2-grid {
    gap: 60px;
  }

  .s2-titulo {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: -0.3px;
    text-align: left;
  }

  .s2-texto {
    font-size: 13px;
    font-weight: 400;
    line-height: 25px;
    text-align: left;
  }

  .s2-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 30px;
  }

  .s2-card-title {
    font-size: 15px;
    font-weight: 400;
    line-height: 25px;
    text-align: left;
  }

.s2-card-sub {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

  .s2-card-list li {
    font-size: 13px;
    font-weight: 400;
    line-height: 25px;
    text-align: left;
  }

  /* =========================
   SEÇÃO 3
   SERVIÇOS
========================= */

.services-section {
  padding: 80px 0;
}

.services-container {
  padding-left: 24px;
  padding-right: 24px;
}

.services-header {
  padding-right: 24px;
  margin-bottom: 40px;
}

.services-tag-line {
  width: 120px;
}

.services-title {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  text-align: left;
}

/* Slider */

.services-slider-wrapper {
  overflow-x: auto;
  overflow-y: hidden;

  width: calc(100% + 24px);

  -webkit-overflow-scrolling: touch;

  scrollbar-width: none;
}

.services-slider-wrapper::-webkit-scrollbar {
  display: none;
}

.services-track {
  display: flex;

  gap: 16px;

  width: max-content;

  padding-right: 24px;
}

/* Cards */

.service-card {
  flex: 0 0 280px;

  width: 280px;

  height: 380px;
}

/* Conteúdo */

.service-content {
  padding: 24px;
}

.service-number {
  font-size: 10px;
  font-weight: 600;
  line-height: 25px;
  text-align: left;
}

.service-content h3 {
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
  text-align: left;
}

.service-content p {
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
}

.services-controls {
  margin-right: 24px;
}

  /* =========================
     SEÇÃO 4
     O ESCRITÓRIO
  ========================= */

  .s4 {
    padding: 80px 0;
  }

  .s4-grid {
    gap: 30px;
  }

  .s4-card-img {
    min-height: 550px;
  }

  .s4-card-texto {
    padding: 36px 30px;
  }

  .s4-card-titulo {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: -0.3px;
    text-align: left;
  }

  .s4-texto {
    font-size: 13px;
    font-weight: 400;
    line-height: 25px;
    text-align: left;
  }

  .s4-footer-nome {
  font-size: 13px;
  font-weight: 400;
  line-height: 25px;
}

.s4-footer-cargo {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
}

  /* =========================
     SEÇÃO 5
     CONTATO
  ========================= */

  .s5 {
    min-height: auto;
  }

  .s5-bg {
  background-position: 20% center;
}

  .s5-grid {
    gap: 40px;
  }

  .s5-direita {
    align-items: flex-start;
  }

  .s5-titulo {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    text-align: left;
  }

  .s5-texto {
    font-size: 13px;
    font-weight: 400;
    line-height: 25px;
    text-align: left;
  }

  .s5-btn {
    width: 100%;
    font-size: 10px;
    font-weight: 600;
  }
  
  .s5-btn-nota {
  font-size: 13px;
  font-weight: 400;
  line-height: 25px;
  display: block;
  width: 100%;
  display: block;
  text-align: center;
}

  /* =========================
     FOOTER
  ========================= */

  footer {
    padding-top: 60px;
  }

  .footer-grid {
    gap: 40px;
  }

  .footer-desc {
  font-size: 13px;
  line-height: 25px;
  font-weight: 400;
  max-width: 320px;
}

  .footer-col-titulo {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 3px;
}

.footer-links li a,
.footer-links li span,
.footer-contato-texto {

  font-size: 13px;
  line-height: 25px;
  font-weight: 400;
}

}

/* =========================================
   FOOTER BOTTOM — MOBILE OVERRIDE
========================================= */

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.footer-copy,
.footer-oab {
  font-size: 10px;
  line-height: 15px;
  text-align: center;
}