.botoes-mafra {
  display: flex;
  gap: 10px;
  width: 100%;
  flex-wrap: wrap; /* permite quebrar linha */
}

.botoes-mafra a {
  flex: 1;
  min-width: 200px; /* evita ficar espremido */
  background: #059b4b;
  color: #fff;
  padding: 14px 10px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  display: block;
}

.botoes-mafra a.manual {
  background: #00448c;
}

/* MOBILE */
@media (max-width: 600px) {
  .botoes-mafra {
    flex-direction: column;
  }

  .botoes-mafra a {
    width: 100%;
  }
}


.topo-lc {
  display: flex;
  width: 100vw;
  margin-left: -50vw;
  left: 50%;
  position: relative;
  height: 45px;
  transition: all .35s ease;
  overflow: hidden;
}
header.scrolled .topo-lc {
  height: 0;
  opacity: 0;
}

header {
  transition: all .3s ease;
}

header.scrolled {
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}
/*////////////////////

HEADER

/////////////////// */

header {
  top: 0px;
  z-index: 2222;
  position: fixed;
  width: 100%; }

.menu-lc .container-lc {
  max-width: 1110px;
  margin: 0 auto;
  width: 100%;
}

.topo-lc {
  display: flex;
  width: 100vw;
  margin-left: -50vw;
  left: 50%;
  position: relative;
  height: 45px;
}

.topo-lc::before {
  content: "";
  width: 60%;
  background: url('../img/frame.jpg') no-repeat center;
  background-size: cover;
}

.topo-right {
  width: 40%;
  background: #00448C;
  display: flex;
  align-items: center;
}

/* SOCIAL */
.topo-social a {
  margin-right: 10px;
  display: inline-flex;
  transition: transform 0.3s ease, opacity 0.3s ease;
color: #fff;
}

.topo-social a:hover {
  transform: translateX(3px) scale(1.05);
}

/* HOVER ESPECÍFICO (mais elegante para ícones) */
.topo-social a:hover {
  transform: scale(1.1);
  opacity: 0.7;
}




/*////////////////////

MENU

/////////////////// */


.menu-lc {
  background: linear-gradient(to bottom, #ffffff 0%, #ffffff 70%, #f4f4f4 100%);
  height: 100px;
  display: flex;
  align-items: center;
}

.menu-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo img {
  max-height: 60px;
}

/* NAV */
.nav-lc ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-lc a {
  text-decoration: none;
  color: #000;
  font-size: 16px;
  transition: all 0.3s ease;
}

/* HOVER PADRÃO */
  .nav-lc a:hover {
  transform: translateY(-2px);
  color: #00448C;

}

/* ATIVO */
.nav-lc li.active > a {
  font-weight: bold;
  color: #00448C;
}

/* =========================
   SUBMENU SOLUÇÕES
========================= */

/* Item pai */
.nav-lc ul li.has-sub {
  position: relative;
}

/* ÁREA INVISÍVEL (corrigida para facilitar o hover) */
.nav-lc ul li.has-sub::after {
  content: "";
  position: absolute;
  top: 100%;                /* começa exatamente abaixo do botão */
  left: -50px;              /* expande para esquerda */
  width: calc(100% + 100px); /* expande para os lados */
  height: 100px;            /* aumenta área para baixo */

  /* debug opcional */
  /* background: rgba(255, 0, 0, 0.2); */
}

/* Submenu */
.nav-lc ul li.has-sub .submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-18%);
  margin-top: 20px;          /* espaço real entre botão e submenu */

  width: 225px;
  background: #f3f3f3;
  padding: 10px 15px;
  list-style: none;

  display: none;
  z-index: 999;
}

/* Mostrar submenu */
.nav-lc ul li.has-sub:hover .submenu {
  display: block;
}

/* Itens do submenu */
.nav-lc ul li.has-sub .submenu li {
  display: block;
  border-bottom: 1px solid #ddd;
}

.nav-lc ul li.has-sub .submenu li:last-child {
  border-bottom: none;
}

/* Links */
.nav-lc ul li.has-sub .submenu li a {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  color: #4a4a4a;
  text-decoration: none;
  padding: 10px 0;
  line-height: 1.3;
}

/* Hover dos links */
.nav-lc ul li.has-sub .submenu li a:hover {
  color: #000;
}



/* =========================
   SUBMENU SOLUÇÕES
========================= */

/* Item pai */
.nav-lc ul li.has-sub {
  position: relative;
}

/* Área invisível */
.nav-lc ul li.has-sub::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -50px;
  width: calc(100% + 100px);
  height: 100px;
}

/* Submenu */
.nav-lc ul li.has-sub .submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-18%);
  margin-top: 20px;
  width: 225px;
  background: #f3f3f3;
  padding: 10px 15px;
  list-style: none;
  display: none;
  z-index: 999;
  border-radius: 5px; /* 👈 AQUI */
}

/* Mostrar */
.nav-lc ul li.has-sub:hover .submenu {
  display: block;
}

/* Itens */
.nav-lc ul li.has-sub .submenu li {
  display: block;
  border-bottom: 1px solid #ddd;
}

.nav-lc ul li.has-sub .submenu li:last-child {
  border-bottom: none;
}

/* Links */
.nav-lc ul li.has-sub .submenu li a {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  color: #4a4a4a;
  text-decoration: none;
  padding: 10px 0;
  line-height: 1.3;
}

.nav-lc ul li.has-sub .submenu li a:hover {
  color: #000;
}


/* =========================
   SUBMENU AREA DO CLIENTE
========================= */

/* Item pai */
.nav-lc ul li.has-sub-2 {
  position: relative;
}

/* Área invisível */
.nav-lc ul li.has-sub-2::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -50px;
  width: calc(100% + 100px);
  height: 100px;
}

/* Submenu */
.nav-lc ul li.has-sub-2 .submenu-2 {
  position: absolute;
  top: 100%;
  left: 25%;
  transform: translateX(-18%);
  margin-top: 20px;
  width: 225px;
  background: #059b4b;
  padding: 10px 15px;
  list-style: none;
  display: none;
  z-index: 999;
  border-radius: 5px; /* 👈 AQUI */
}

/* Mostrar */
.nav-lc ul li.has-sub-2:hover .submenu-2 {
  display: block;
}

/* Itens */
.nav-lc ul li.has-sub-2 .submenu-2 li {
  display: block;
  border-bottom: 1px solid #17B561;
}

.nav-lc ul li.has-sub-2 .submenu-2 li:last-child {
  border-bottom: none;
}

/* Links */
.nav-lc ul li.has-sub-2 .submenu-2 li a {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  color: #FFF;
  text-decoration: none;
  padding: 10px 0;
  line-height: 1.3;
}

.nav-lc ul li.has-sub-2 .submenu-2 li a:hover {
  color: #c6e8d6;
}












/* ==============================
   AREA O CLIENTE (BOTÃO VERDE)
================================ */

.cliente > a {
  background: #059B4B;
  color: #fff;
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 6px;
}

/* HOVER no botão principal */
.cliente > a:hover {
  color: #c6e8d6;
}

/* SUBMENU CLIENTE */
.cliente-sub {
  background: #059B4B;
  border-radius: 6px;
}

.cliente-sub a {
  color: #fff;
}

/* HOVER no submenu */
.cliente-sub a:hover {
  color: #c6e8d6;
}

/* =========================
   0800 (BOTÃO AZUL)
========================= */

.fone > a {
  background: #00448c;
  color: #fff;
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 6px;
 margin-left: -20px; /* ajuste aqui */
}

.fone > a:hover {
  color: #99C1EB; /* 👈 muda só o texto */
}
/* =========================
   RESPONSIVO
========================= */

@media (max-width: 768px) {

  .menu-content {
    flex-direction: row !important; /* CORREÇÃO AQUI */
    justify-content: space-between !important;
    align-items: center !important;
  }

  .nav-lc ul {
    flex-direction: column;
    align-items: flex-start;
  }

.nav-lc ul {
  display: flex;
  flex-direction: column;
  align-items: center; /* CENTRALIZA */
  justify-content: center;
  text-align: center;
  height: 100%;
}

.nav-lc ul li {
  width: 100%;
  text-align: center;
}

.nav-lc ul li a {
  display: block;
  width: 100%;
  padding: 12px 0;
}

}




/*////////////////////

TOPO INTERNO

/////////////////// */

.imagem-topo {
  width: 100%;
  display: block;
  margin-top: 140px; /* desktop */
}

/* Tablet */
@media (max-width: 1024px) {
  .imagem-topo {
    margin-top: 70px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .imagem-topo {
    margin-top: 60px;
  }
}

/* Mobile pequeno */
@media (max-width: 480px) {
  .imagem-topo {
    margin-top: 55px;
  }
}




/*///////////////////////

MÓDULO CLIENTES - HOME

/////////////////////// */


/* MÓDULO */
.modulo-clientes {
  padding: 60px 0;
}

/* FUNDO 100% */
.mafra-modulo-lc {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 40px 0;
}

.modulo-clientes .container-lc {
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}

/* GRID */
.clientes-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  column-gap: 20px; /* lateral */
  row-gap: 20px;    /* AQUI você aumenta o vertical */
  align-items: center;
}

/* ITEM */
.cliente-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  transition: all 0.3s ease;
}

/* IMAGEM */
.cliente-item img {
  max-width: 120%;
  height: auto;
  display: block;
  transition: all 0.3s ease;
}

/* HOVER SUAVE */
.cliente-item:hover {
  transform: translateY(-5px);
}

.cliente-item:hover img {
  transform: scale(1.05);
}

/* RESPONSIVO */
@media (max-width: 1024px) {
  .clientes-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 768px) {
  .clientes-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .clientes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}




/*////////////////////////

MÓDULO UNIDADES - HOME

//////////////////////// */

/* BLOCO FUNDO FULL WIDTH */
.modulo-lc {
  position: relative;
  width: 100vw;              /* força largura total da viewport */
  left: 50%;
  right: 50%;
  margin-left: -50vw;        /* puxa pra fora do container */
  margin-right: -50vw;
  padding: 80px 0;
}
/* FUNDO DIVIDIDO */
.modulo-lc::before,
.modulo-lc::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  z-index: -1;
}

.modulo-lc {
  position: relative;
  padding: 80px 0;
}

/* LADO ESQUERDO 30% (imagem) */
.modulo-lc::before {
  left: 0;
  width: 30%;
  background: url('../img/fundo-verde.jpg') no-repeat center;
  background-size: cover;
}

/* LADO DIREITO 70% (azul) */
.modulo-lc::after {
  right: 0;
  width: 70%;
  background: #00448C;
}

/* CONTAINER CENTRAL */
.container-lc {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* GRID */
.lc-conteudo {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* LEFT */
.lc-left {
  width: 45%;
}

.lc-left img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.28);
  border-radius: 16px;
}

/* RIGHT */
.lc-right {
  width: 60%;
  color: #fff;
}

/* TEXTOS */
.titulo-menor-lc {
  color: #fff;
  font-weight: bold;
  font-size: 15px;
  display: block;
  text-align: left;
}

.titulo-maior-lc {
  color: #fff;
  text-align: left;
  font-weight: bold;
  font-size: 38px;
  line-height: 1.1;
  margin-top: 10px;
  margin-bottom: 20px;
}

.texto-principal {
  text-align: left;
  margin: 0 0 30px 0;
  font-size: 15px;
  line-height: 1.6;
}

/* ITENS (ICONE + TEXTO) */
.lc-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;

}

.lc-item img {
  width: 50px;
  height: auto;
  margin-top: 5px;
}

/* LINK ENVOLVENDO ITEM */
.lc-item a {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
  padding: 10px;
  border-radius: 8px;
}

/* HOVER ANIMAÇÃO */
.lc-item a:hover {
  transform: translateX(8px);
}

/* ÍCONE ANIMADO */
.lc-item a:hover img {
  transform: scale(1.1);
}

/* SUAVIZA ANIMAÇÕES */
.lc-item img {
  transition: all 0.3s ease;
}

/* TEXTO (opcional: leve destaque no hover) */
.lc-item a:hover .titulo-cidades {
  text-decoration: underline;
}

/* TITULO CIDADES */
.titulo-cidades {
  text-align: left;
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  font-weight: bold;
  text-decoration: none;
}

.lc-item a:hover .titulo-cidades {
  text-decoration: none;
}

/* ENDEREÇOS */
.texto-enderecos {
  text-align: left;
  margin: 0 0 10px 0;
  font-size: 15px;
  line-height: 1.6;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .lc-conteudo {
    flex-direction: column;
  }

  .lc-left,
  .lc-right {
    width: 100%;
  }

  .modulo-lc::before {
    width: 100%;
    height: 200px;
  }

  .modulo-lc::after {
    width: 100%;
  }
}

/* RESPONSIVO */

@media (max-width: 768px) {

  /* MÓDULO FULL WIDTH AJUSTE */
  .modulo-lc {
    padding: 50px 20px;
  }

  /* REMOVE DIVISÃO 30/70 E SIMPLIFICA FUNDO */
  .modulo-lc::before {
    width: 100%;
    height: 180px;
    top: 0;
    left: 0;
  }

  .modulo-lc::after {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }

  /* CONTAINER */
  .container-lc {
    padding: 0;
  }

  /* LAYOUT EM COLUNA */
  .lc-conteudo {
    flex-direction: column;
    gap: 30px;
  }

  /* IMAGEM */
  .lc-left {
    width: 100%;
    text-align: center;
  }

  .lc-left img {
    max-width: 280px;
  }

  /* TEXTO */
  .lc-right {
    width: 100%;
  }

  /* TÍTULOS */
  .titulo-menor-lc {
    font-size: 13px;
    text-align: center;
  }

  .titulo-maior-lc {
    font-size: 26px;
    text-align: center;
  }

  .texto-principal {
    font-size: 14px;
    text-align: center;
  }

  /* ITENS */
  .lc-item a {
    padding: 8px 0;
    transform: none !important; /* remove animação lateral no mobile */
  }

  .lc-item {
    margin-bottom: 15px;
  }

  /* ALINHAMENTO DOS ITENS */
  .lc-item a {
    align-items: flex-start;
  }

  .lc-item img {
    width: 24px;
    margin-top: 4px;
  }

  /* TEXTOS DOS ITENS */
  .titulo-cidades,
  .texto-enderecos {
    text-align: left;
    font-size: 14px;
  }

}




/*/////////////////////////

MÓDULO QUEM SOMOS - HOME

///////////////////////// */

.titulo-grande {
    color: #000;
    font-weight: bold;
    font-size: 38px;
    line-height: 1.1;
    margin-top: 5px;   /* meio espaço */
    margin-bottom: 20px; /* espaço completo */
    text-align: left;
}

.titulo-pequeno-verde {
    color: #059b4b;
	font-weight: bold;
    font-size: 15px;
    display: block;
	text-align: left;
}

.quem {
    padding: 80px 0;

}

/* Texto maior */
.texto-quem-somos {
    text-align: left;
    margin: 0 0 30px 0;
    font-size: 15px;
    line-height: 1.6;
    max-width: 900px;
}

/* Container dos itens */
.itens-quem-somos {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Cada item */
.item {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Ícone */
.icone img {
    width: 90px; /* ajuste conforme necessário */
    height: auto;
}

/* Conteúdo */
.conteudo h3 {
    margin: 0 0 0px 0;
    font-size: 18px;
    font-weight: 700;
	text-align: left;
}

.conteudo p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

.solucoes {
    padding: 80px 0;
    background: #f5f5f5;
}

/* Fundo 100% */
.solucoes {
    width: 100%;
    background-color: #f0f0f0; /* substitua pela cor que quiser */
    padding: 60px 20px; /* espaço interno */
    display: grid;
    grid-template-columns: 1fr 1fr; /* duas colunas iguais */
    align-items: start;
    gap: 20px; /* espaço entre colunas */
}

/* Coluna do título */
.solucoes .titulo-container {
    display: flex;
    flex-direction: column;
}

/* Ajusta topo-solucoes para aparecer na coluna da direita */
.topo-solucoes {
    max-width: 100%;
}

/* Responsivo: em telas pequenas, empilha colunas */
@media (max-width: 768px) {
    .solucoes {
        grid-template-columns: 1fr;
    }

}





/*///////////////////////

MÓDULO SOLUÇÕES - HOME

////////////////////// */

.modulo-texto {
  padding: 0 40px;
}

.container-txt {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  max-width: 1100px; /* largura exata do site */
  width: 100%;
  margin: 0 auto;
}

/* COLUNAS IGUAIS */
.col-esquerda,
.col-direita {
  flex: 1;
}

/* ESQUERDA */
.titulo-pequeno-txt {
  color: #059b4b;
  font-weight: bold;
  font-size: 15px;
  display: block;
  text-align: left;
}

.titulo-grande-txt {
  color: #000;
  font-weight: bold;
  font-size: 38px;
  line-height: 1.1;
  margin-top: 5px;
  margin-bottom: 20px;
  text-align: left;
}

/* DIREITA */
.col-direita p {
  text-align: left;
  margin: 0 0 30px 0;
  font-size: 15px;
  line-height: 1.6;
}

/* RESET */
body {
  margin: 0;
  font-family: Gudea, Arial, sans-serif;
}

/* FUNDO 100% */
.mafra-modulo-hm {
  background: #F1F4FA;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 70px 0;
}



/* FUNDO 100% */
.mafra-modulo {
  background: #F1F4FA;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 70px 0;
}



/* WRAPPER CENTRAL */
.mafra-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
}

/* CAROUSEL */
.carousel {
  overflow: hidden;
  width: 100%;
  padding-top: 10px;   /* espaço para o hover subir */
  margin-top: -10px;   /* compensa o espaço visual */
}

.track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
}

/* CARD */
.card {
  min-width: calc((100% - 40px) / 3);
  background: #fff;
  padding: 17px;
  border-radius: 12px;
  border: none !important;   /* remove qualquer borda */
  outline: none;             /* remove contorno */
  box-shadow: none;          /* remove sombra padrão (se houver) */
}

.card {
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-8px); /* um pouco mais fluido */
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.card img {
  width: 100%;
}

.card h3 {
  font-weight: bold;
  margin: -25px 0 10px;
  text-align: left;
  font-size: 20px;
}

.card p {
  color: #555;
  font-size: 15px;
}

/* SETAS */
.nav {
  background: none;
  border: none;
  font-size: 50px;
  cursor: pointer;
  color: #059B4B;
  position: absolute;
  z-index: 2;
}

.prev {
  left: -50px;
}

.next {
  right: -50px;
}

.track {
  will-change: transform;
}

.nav {
  cursor: pointer;
}

/* BOTÃO COMPLETO */
.btn-saiba {
  display: flex;
  width: 100%;
  height: 60px;
  overflow: hidden;
 text-decoration: none !important; /* remove sublinhado */
  color: #000 !important;           /* define a cor que quiser */
  cursor: pointer;
  
}

/* LADO ESQUERDO */
.btn-saiba span {
  flex: 1;
  background: #F1F4FA;
  display: flex;
  align-items: center;
  font-weight: bold;
 padding-left: 17px;
}

/* LADO VERDE */
.btn-green {
  width: 60px;
  background: #059B4B;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

}

/* CÍRCULO */
.circle {
  width: 40px;
  height: 40px;
  border: 3px solid #fff;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-size: 18px;
}




/*////////////////////////

MÓDULO SOLUÇÕES - MOBILE

///////////////////////// */

@media (max-width: 768px) {

  .carousel {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;

    scroll-snap-type: x mandatory; /* 🔥 trava no eixo horizontal */
    scroll-behavior: smooth;
  }

  .track {
    display: flex;
    gap: 15px;
    transform: none !important;
  }

  .card {
    flex: 0 0 100%; /* ou calc(...) se estiver usando preview */
    scroll-snap-align: start; /* 🔥 faz encaixar no início */
  }

}

/* ESCONDE POR PADRÃO (desktop primeiro) */
.swipe-hint {
  display: none;
}

/* DEPOIS vem o mobile */
@media (max-width: 768px) {

  .swipe-hint {
    display: block !important; /* 👈 força aparecer */
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #000;
    margin-top: 15px;
    font-family: 'Gudea', Arial, sans-serif;
  }

}




/*////////////////////

FONTES

/////////////////// */

@import url("https://fonts.googleapis.com/css?family=Barlow");
html {
  overflow-x: hidden; }

body {
  font-family: 'Barlow', sans-serif;
  background-color: #fff; }




/*////////////////////

BOTÃO NOTÍCIAS

/////////////////// */

.btn {
  border-radius: 5px !important;
  background-color: #059b4b;
  color: #fff;
  font-size: 16px;
  font-weight: bold; }
  .btn:hover {
    color: #fff;
    background-color: #047c3c; }




/*////////////////////

NOTICIAS

/////////////////// */

main .artigos {
    margin-top: 0px;
    margin-bottom: 0px;
}

main .artigos .item a {
    text-decoration: none;
    color: #000;
}

main .artigos .item .imagem {
    height: 250px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

main .artigos .item .data {
    font-size: 12px;
    color: #000;
}

main .artigos .item h2 {
    font-size: 18px;
    color: #000;
    font-weight: bold;
    text-align: center;
}

main .artigos .item p {
    font-size: 14px;
    color: #000;
}

main .artigos .item {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    margin-bottom: 60px; /* espaçamento padrão */
}

/* A cada 3 itens, aumenta o espaço abaixo */
main .artigos .item:nth-child(3n) {
    margin-bottom: 60px; /* espaço maior entre "linhas" */
}
main .artigos .item:hover {
    transform: translateY(-5px);
    
}



/*////////////////////

BANNER

/////////////////// */

.banner {
  margin-top: 140px; }
  .banner .owl-prev, .banner .owl-next {
    position: absolute;
    top: 50%;
    margin-top: -50px;
    width: 50px;
    height: 50px;
    text-align: center;
    background-color: #f58634;
    color: #fff;
    font-size: 40px;
    line-height: 0; }
    .banner .owl-prev:hover, .banner .owl-next:hover {
      background-color: #c36a28; }
  .banner .owl-prev {
    left: 0px; }
  .banner .owl-next {
    right: 0px; }
  .banner .img-mobi {
    display: none !important; }

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
  background: 0 0;
  color: inherit;
  border: none;
  padding: 0 !important;
  font-size: 100px;
  position: absolute;
  top: 50%;
  margin-top: -25px;
}

.owl-carousel .owl-nav button span {
  height: 70px;
  display: block;
  color: #069b4a;
}

.owl-theme .owl-nav [class*="owl-"] {
  background: #003984;
  color: #fff;
  text-decoration: none;
  font-size: 46px;
  height: 60px;
  height: 60px;
  display: block;
  line-height: 36px !important;
}

.owl-carousel .owl-nav button:hover {
  background: #fff !important;
}

.owl-carousel .owl-nav button:focus {
  outline: none;
  box-shadow: none;
}


/*////////////////////

FOOTER

/////////////////// */

/* FUNDO FULL WIDTH */
.footer-lc {
  background: #00448C;
  width: 100vw;
  margin-left: -50vw;
  left: 50%;
  position: relative;
  padding: 60px 0 30px;
  color: #fff;
}

/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.9fr 1.0fr 1.4fr;
  gap: 60px;
}

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

/* LOGO */
.footer-logo {
  max-width: 180px;
  margin-bottom: 20px;
}

/* TEXTO */
.footer-texto {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* =========================
   🔥 PADRÃO GLOBAL DE LINKS
   ========================= */

.footer-lc a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-lc a:hover {
  transform: translateX(5px);
  opacity: 0.7;
}

/* =======================
SOCIAL
========================= */

.footer-social a {
  margin-right: 10px;
  display: inline-flex;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-social a:hover {
  transform: translateX(3px) scale(1.05);
}

/* HOVER ESPECÍFICO (mais elegante para ícones) */
.footer-social a:hover {
  transform: scale(1.1);
  opacity: 0.7;
}

/* CONTATO */
.footer-contato {
  font-weight: bold;
  font-size: 15px;
  display: block;
  margin-top: 20px;
}

.footer-contato-eml {
  font-size: 15px;
  display: block;
}

/* TITULOS */
.footer-titulo {
  font-weight: bold;
  font-size: 15px;
  margin-bottom: 15px;
}

/* LISTA */
.footer-lista {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-lista li {
  margin-bottom: 10px;
}

.footer-lista a {
  font-size: 15px;
  display: inline-block;
}

/* UNIDADES */
.footer-unidade {
  display: block;
  margin-bottom: 15px;
}

/* TEXTO */
.footer-unidade strong {
  font-size: 15px;
  display: block;
}

.footer-unidade p {
  font-size: 15px;
  margin: 0;
}

/* LINHA */
.footer-linha {
  height: 1px;
  background: #607cb4;
  margin: 40px 0;
}

/* BOTTOM */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 14px;
  font-weight: bold;
}

.footer-dev img {
  max-width: 50px;
}

/* RESPONSIVO */
@media (max-width: 768px) {

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

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

}


/*////////////////////

PAGINA LOGISTICA REVERSA - TIPOS DE ECONOMIA

/////////////////// */


 .container-eco {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 40px;
      padding: 20px 0px;
    }

    .imagem {
      flex: 1;
    }

    .imagem img {
      width: 100%;
      height: auto;
      border-radius: 10px;
    }

    .texto {
      flex: 1;
    }

    .texto h2 {
      font-size: 28px;
      margin-bottom: 15px;
      color: #000;
    }

    .texto p {
      font-size: 16px;
      line-height: 1.5;
      color: #555;
    }

    /* Responsivo */
    @media (max-width: 768px) {
      .container-eco {
        flex-direction: column;
        text-align: center;
      }
    }



{
    margin: 0;
      font-family: 'Barlow', sans-serif;
    }

    .eco-wrapper {
      max-width: 1100px;
      margin: 0 auto;
      padding: 60px 20px;
    }

    .eco-container {
      display: flex;
      gap: 60px;
    }

    .eco-col {
      flex: 1;
    }

    .eco-col h2 {
      font-size: 28px;
      margin-bottom: 30px;
      color: #059b4b;
      font-weight: 700;
    }

    .eco-item {
      margin-bottom: 25px;
    }

    .eco-item strong {
      display: block;
      font-size: 18px;
      margin-bottom: 8px;
      color: #000;
      font-weight: 600;
    }

    .eco-item p {
      font-size: 15px;
      line-height: 1.5;
      color: #555;
      margin: 0;
      font-weight: 400;
    }

    /* Responsivo */
    @media (max-width: 768px) {
      .eco-container {
        flex-direction: column;
        gap: 40px;
      }
    }
/*////////////////////

PAGINA EMPRESA - TIMELINE

/////////////////// */

.galeria-logos {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}

.galeria-logos img {
  width: 100%;
  height: auto;
  display: block;
}

/* Tablet: 3 colunas */
@media (max-width: 992px) {
  .galeria-logos {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile: 2 colunas */
@media (max-width: 600px) {
  .galeria-logos {
    grid-template-columns: repeat(2, 1fr);
  }
}

/*////////////////////

PAGINA UNIDADES

/////////////////// */

.container-unidades {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
  gap: 20px;
}

.coluna {
  flex: 1;
}

/* Título da unidade */
.titulo-unidade {
  color: #000;
  font-weight: bold;
  font-size: 38px;
  line-height: 1.1;
  margin-top: 0px;
  margin-bottom: 5px;
  text-align: left;
}

.titulo-unidade-verde {
    color: #059b4b;
	font-weight: bold;
    font-size: 15px;
    display: block;
	text-align: left;
}

/* Endereço */
.endereco {
  margin-bottom: 20px;
}

/* Mapa */
.mapa iframe {
  width: 100%;
  height: 200px;
  border: 0;
}

/* Responsivo */
@media (max-width: 768px) {
  .container-unidades {
    flex-direction: column;
  }
  }

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

/* CONTAINER */

.contato-formulario {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 0px;
  padding-bottom: 60px;
}

/* GRID */

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

/* CAMPOS */

.form-grid input,
textarea {

width: 100%;
background: #e9ecf4;
border: none;
padding: 12px 15px;
font-family: 'Barlow', sans-serif;
font-size: 15px;

}

/* ALTURA DO CAMPO */

.form-grid input {
  height: 60px;
}

/* MENSAGEM */

textarea {
  margin-top: 20px;
  height: 150px;
  resize: none;
}

/* BOTÃO */

.btn-enviar {
  display: inline-block;
  border-radius: 5px !important;
  background-color: #059b4b;
  color: #fff;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 12px 28px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.form-botao {
  text-align: center;
  margin-top: 30px;
}

/* HOVER */

.btn-enviar:hover {
  background-color: #047c3c;
  color: #fff;
}


.contato-links {
  text-align: center;
  margin-bottom: 40px;
}

.contato-links a {
  color: #000;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block; /* necessário para o efeito de movimento */
}

.contato-links a:hover {
  color: #00448c;
  transform: translateY(-2px);
}



/* RESPONSIVO */

@media (max-width: 900px){

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

}

