/*
 * Globals
 */

body {
  overflow-x: hidden;
  max-width: 100vw!important;
}

.logo-rodape {
  width: 360px;
  margin-top: 30px!important;
}

.text-dark {
  color: #022b54 !important;
}

.scroll-indicator {
  position: absolute;
  bottom: 200px;
  right: 20px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: white;
  opacity: 0.85;
}

.scroll-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
}

.scroll-arrow {
  font-size: 20px;
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(6px);
  }
}

* {
  font-family: 'Inter', sans-serif;
}

.h1 {
  font-size: 60px;
}

.h2 {
  font-size: 42px;
}

.txt-highlight-green {
  color: #7ed957!important;
}

.bg-highlight-green {
  background: linear-gradient(135deg, #25d366, #128C4C);
}

.bg-highlight-gradient-green {
  background: linear-gradient(160deg, #306b15, #73ca4e);
  /* degrade do verde claro para escuro */
  border: 0px solid #66ff66;
  /* borda externa verde clara */
  box-shadow: inset 0 0 0 0px white;
  /* borda interna branca */
}


.bg-green {
  background-color: #25d366;
}


html {
  scroll-behavior: smooth;
}



.banner_bg {
  position: relative;
  overflow: hidden;
  padding: 50px;
  color: white;
  text-align: center;
}

.banner_bg::before {
  content: "";
  position: absolute;
  inset: 0;
  /*background-color: rgba(14, 67, 103, 1);*/
  background-image: url('../images/floresta2.webp');
  background-size: cover;
  background-position: center;
  border-top-left-radius: 10rem;
  border-bottom-right-radius: 12rem;
  border-top-right-radius: 0rem;
  border-bottom-left-radius: 0rem;
  overflow: hidden;
  opacity: 0.9;
  /* transparência da imagem */
  z-index: -1;
  /*box-shadow: inset 300px 200px 150px rgba(0, 0, 0, 0.9);*/
}

.bg-blue-dark {
  /*background-color: rgba(14, 67, 103, 1)!important;*/
  background: #022b54;
}

.nav-header {
  /*background-color: rgba(14, 67, 103, 1);*/
  background: #022b54;
  max-width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

}

.nav-header .logo {
  width: 156px;
  height: auto;
}

.menu-btn {
  background: none;
  border: none;
  color: white;
  font-size: 28px;
}

.bg-main {
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.4);
}

.whatsapp-btn {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 36px;
  line-height: 60px;
  z-index: 1000;
  text-decoration: none;
}

.green-check {
  color: #7ed957 !important;
}

.animate2 {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease-out;
}

.animate2.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Configuração base */
[class*="animate-"] {
  opacity: 0;
  transition: all 0.6s ease-out;
}

/* Animações específicas */
.animate-left {
  transform: translateX(-50px);
}

.animate-right {
  transform: translateX(50px);
}

.animate-top {
  transform: translateY(-50px);
}

.animate-bottom {
  transform: translateY(50px);
}

/* Quando entra na viewport */
.visible {
  opacity: 1;
  transform: translate(0, 0);
}



.max-container-md {
  max-width: 900px;
  margin: 0 auto;
}


/* Custom default button */
.btn-light,
.btn-light:hover,
.btn-light:focus {
  color: #333;
  text-shadow: none;
  /* Prevent inheritance from `body` */
}


/*
 * Base structure
 */

body {}

.bg-green {
  background-color: #258320 !important;
}

.cover-container {
  max-width: 42em;
}


/*
 * Header
 */

.nav-link.active {
  color: #25d366!important;
  /* border-bottom: 2px solid #25d366;*/
}


.nav-masthead {
  padding-right: 3rem;
}

.nav-masthead .nav-link {
  color: rgba(255, 255, 255, .5);
}

.nav-masthead .nav-link:hover,
.nav-masthead .nav-link:focus {
  color: #25d366;
  /*border-bottom-color: rgba(255, 255, 255, .25);*/
}

.nav-masthead .nav-link:focus {
  color: #25d366;
  /*border-bottom-color: rgba(255, 255, 255, .25);*/
}

.nav-masthead .nav-link+.nav-link {
  margin-left: 3rem;
}

.nav-masthead .active {
  color: #25d366;
  /*border-bottom-color: #fff;*/
}



@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-left {
  animation: slideInLeft 0.8s ease-out forwards;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-right {
  animation: slideInRight 0.8s ease-out forwards;
}

.bold-text {
  font-weight: bold;
}

.bento-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  /*border-radius: 1.5rem;*/
}

.img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.img-grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.img-container {
  /*aspect-ratio: 1 / 1;*/
  height: 200px;
  overflow: hidden;
}

.top-left {
  border-top-left-radius: 5rem;
}

.top-right {
  border-top-right-radius: 0rem;
}

.bottom-left {
  border-bottom-left-radius: 0rem;
}

.bottom-right {
  border-bottom-right-radius: 5rem;
}

.nossos-numeros {
  background-image: url('floresta.jpg');
  /* Substitua pelo nome real da imagem */
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.nossos-numeros h2 {
  font-weight: bold;
 /* color: #ffde00;*/
 color: #7ed957
}

.nossos-numeros p.subtitle {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #e0e0e0;
  
}

.nossos-numeros .numero-destaque {
  font-size: 2.5rem;
  font-weight: bold;
  /*color: #ffde00;*/
  color: #7ed957
}

.nossos-numeros .numero-destaque2 {
  font-size: 2.5rem;
  font-weight: bold;
  /*color: #ffde00;*/
  color: #7ed957
}

.numero-destaque22 {
  font-size: 2.5rem;
  font-weight: bold;
  /*color: #ffde00;*/
  color: #7ed957!important
}

.nossos-numeros .descricao {
  font-size: 1rem;
  margin-top: 10px;
  color: #cfcfcf;
}

.nossos-numeros .btn-destaque {
  margin-top: 40px;
  background: linear-gradient(90deg, #00B5D9 0%, #7FE340 100%);
    color: #fff;
  font-weight: bold;
  padding: 12px 30px;
  border: none;
  border-radius: 30px;
  transition: background 0.3s ease;
}

.nossos-numeros .btn-destaque:hover {
  background-color: #e6ba00;
}

.btn-destaque {
  .button-orcamento {
    margin-left: 40px;
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(90deg, #00B5D9 0%, #7FE340 100%);
    color: #fff;
    font-weight: bold;
    text-transform: capitalize;
    text-decoration: none;
    border: none;
    font-size: 18px;
    padding-left: 50px;
    padding-right: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
  }
}

.icon {
  font-size: 40px;
}

.container_quem_somos {
  color: var(--branco, #fff);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  border-radius: 86px 0;
  border: 1px solid var(--branco, #fff);
  background: rgba(217, 217, 217, 0);
  padding: 40px 88px;
  height: auto;
  max-width: 837px;
  width: 100%;
  z-index: 1;
  position: relative;
  right: 0px;
  top: 0;
}

ul.list-unstyled {
  display: inline-block;
  text-align: left;
  flex-direction: column;
  gap: 20px;
}

li {
  padding-top: 12px;
}

.mySwiper1 {
  width: 100%;
  overflow: hidden;
}


.swiper1 {
  width: 100%;
  /* Garante que o swiper ocupe toda a largura disponível */
  height: 100%;
  /* Ajuste conforme a necessidade */
}

.swiper-wrapper2 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}


.swiper-slide img {
  width: 100%;
  max-width: 200px;
  /* Ajusta a imagem para ocupar 100% da largura do swiper-slide */
  height: auto;
  /* Mantém a proporção da imagem */
  object-fit: contain;
  /* Garante que a imagem se ajuste sem distorcer */
}

.img-service {
  width: auto;
  height: auto;
  max-height: 330px;
  border-radius: 5rem 0 5rem 0;
  margin-top: -50px;
}


.card2 {
  box-shadow: inset 0px -120px 50px rgba(0, 0, 0, 0.8);

  display: flex;
  align-items: end;
  padding: 20px;
  position: relative;
  overflow: hidden;
  background-color: #0d6efd;
  color: white;
  border-radius: 10px;
  cursor: pointer;
}

.h-300 {
  height: 300px;
}

.card-1 {
  background-image: url('../images/infraestrutura.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.card-2 {
  background-image: url('../images/mineracao.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.card-3 {
  background-image: url('../images/energia.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.card-4 {
  background-image: url('../images/agronegocio.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.card-5 {
  background-image: url('../images/comercio.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
}

.card-6 {
  background-image: url('../images/industria.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.card-7 {
  background-image: url('../images/saneamento.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.card-8 {
  background-image: url('../images/outros.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.cards {
  background-size: cover;
  superbox-editing-mode: live;
  width: 100%;
  height: 530px;
  background-repeat: no-repeat;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
}

.hover-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 3;
  padding: 20px;
}


.banner {
  position: relative;
  overflow: hidden;
  padding: 50px;
  color: white;
  text-align: center;
}

.banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('https://www.sustentarambiental.com.br/wp-content/uploads/2023/10/banner.jpg');
  background-size: cover;
  background-position: center;
  border-top-left-radius: 10rem;
  border-bottom-right-radius: 12rem;
  border-top-right-radius: 0rem;
  border-bottom-left-radius: 0rem;
  overflow: hidden;
  opacity: 0.9;
  /* transparência da imagem */
  z-index: -1;
  background-color: black;

  box-shadow: inset 300px 200px 150px rgba(0, 0, 0, 0.9);
}

.banner-2 {
  position: relative;
  overflow: hidden;
  padding: 50px;
  color: white;
  text-align: center;

}

.banner-2::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(https://cdn.pixabay.com/photo/2021/08/19/12/37/hill-6557956_1280.jpg);
  background-size: cover;
  background-position: center;
  border-top-left-radius: 0rem;
  border-bottom-right-radius: 0rem;
  border-top-right-radius: 12rem;
  border-bottom-left-radius: 10rem;
  opacity: 0.9;
  /* transparência da imagem */
  z-index: -1;
  background-color: black;
}

.d-grid {

  grid-template-columns: repeat(1, 1fr); /* default para mobile */
}

@media (min-width: 480px) {
  .d-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .d-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .d-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1280px) {
  .d-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}


.banner-23 {
  border-top-left-radius: 10rem;
  border-bottom-right-radius: 12rem;
  border-top-right-radius: 0rem;
  border-bottom-left-radius: 0rem;
}


.input input,
.input textarea,
.input select {
  padding: 1.3rem 1.5rem .5rem !important;
  color: #051a29;
  font-size: 15px;
  border-radius: .5rem;
  border: 1px solid #fff;
  transition: all .3s ease-in-out;
  background: #fff;
}


.card2:hover .hover-content {
  opacity: 1;
}

















.timeline-section {
  padding: 80px 0;
  background-color: #f8f9fa;
  position: relative;
}

.timeline-section::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 6px;
  background: #022b54;
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-item .timeline-content {
  width: 45%;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  position: relative;
}

.timeline-item .timeline-content.left {
  float: left;
  text-align: right;
}

.timeline-item .timeline-content.right {
  float: right;
  text-align: left;
}

.timeline-item .timeline-content::before {
  content: '';
  position: absolute;
  top: 20px;
  width: 0;
  height: 0;
  border: 10px solid transparent;
}

.timeline-item .timeline-content.left::before {
  right: -20px;
  border-left-color: #fff;
}

.timeline-item .timeline-content.right::before {
  left: -20px;
  border-right-color: #fff;
}

.timeline-item .timeline-dot {
  width: 20px;
  height: 20px;
  background: #022b54;
  border-radius: 50%;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

@media (max-width: 768px) {

  .scroll-indicator {
    bottom: 80px;
  }

  .timeline-section::before {
    left: 20px;
  }

  .timeline-item .timeline-content {
    width: 80%;
    float: none;
    margin-left: 50px;
    text-align: left;
  }

  .timeline-item .timeline-content.left::before,
  .timeline-item .timeline-content.right::before {
    left: -20px;
    border-right-color: #fff;
    border-left-color: transparent;
  }

  .timeline-item .timeline-dot {
    left: 20px;
  }
}

.botao-contato {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(90deg, #00B5D9 0%, #7FE340 100%);
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 50px;
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.botao-saiba-mais {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(90deg, #00B5D9 0%, #7FE340 100%);
  color: #fff;
  font-weight: bold;
  text-transform: capitalize;
  text-decoration: none;
  border: none;
  border-radius: 50px;
  font-size: 18px;
  padding-left: 50px;
  padding-right: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.botao-contato:hover {
  opacity: 0.9;
  transform: scale(1.03);
}

.botao-contato:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 181, 217, 0.4);
}

.iframe {
  width: 100%;
  height: 300px;
  margin-bottom: 54px;
}

.fs-sm {
  font-size: 16px !important;
}

.text-justify {
  text-align: justify!important;
}

.hr-gradient {
  border: none;
  height: 6px;
  width: 150px;
  background: linear-gradient(90deg, #00B5D9 0%, #7FE340 100%);
  border-radius: 4px;
  /* opcional: bordas arredondadas */
  margin: 0 auto;
  /* espaçamento superior e inferior */
  margin-top: 30px;
  margin-bottom: 40px;
  opacity: 1;
}

.hr-line {
  border: none;
  height: 3px;
  width: 90%;
  background-color: rgba(14, 67, 103, 1)!important;
  border-radius: 4px;
  /* opcional: bordas arredondadas */
  margin: 0 auto;
  /* espaçamento superior e inferior */
  margin-top: 26px;
  margin-bottom: 26px;
  opacity: 1;
}



.button-orcamento {
  margin-left: 40px;
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(90deg, #00B5D9 0%, #7FE340 100%);
  color: #fff;
  font-weight: bold;
  text-transform: capitalize;
  text-decoration: none;
  border: none;
  font-size: 18px;
  padding-left: 50px;
  padding-right: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.map {
  width: 100%; height: 600px; object-fit: contain;
}

form {
  padding-right: 30px;
}

.quem-somos-solucoes {
  border-radius: 5rem 0 5rem 0; padding: 80px 80px; margin-left: -70px;
  padding-left: 150px;
  padding-bottom: 0px;
  padding-top: 40px;
}

.h1-quem {
  font-size: 70px; text-shadow: 2px 2px 30px rgba(0, 0, 0, 0.6);
}


/* Esconde o menu e exibe o botão em telas menores */
@media (max-width: 1320px) {

  .map {
   height: auto!important;
   margin-top: 20px;
  }

  .quem-somos-solucoes {
    border-radius: 5rem 0 5rem 0; padding: 80px 80px; margin-left: 0px;
    padding: 30px!important;
    padding-bottom: 0px;
    padding-top: 40px;
  }

  
.quem-somos-solucoes {
  border-radius: 5rem 0 5rem 0; padding: 80px 80px; margin-left: 0px;
}


  .d-grid2 {
   /* grid-template-columns: repeat(auto-fit, minmax(33%, 1fr));*/
  }


/* Esconde o menu e exibe o botão em telas menores */
@media (max-width: 1226px) {

  .logo-rodape {
    width: 260px;
    margin-top: 0px!important;
  }


  .h1-quem {
    font-size: 34px; text-shadow: 2px 2px 30px rgba(0, 0, 0, 0.6);
  }

  .d-grid2 {
   /* grid-template-columns: repeat(auto-fit, minmax(50%, 1fr));*/
  }


  form {
    padding-right: 0px;
  }

  .button-orcamento {
    margin-left: 0px;
  }

  .img-service {
    margin-top: 0px;
  }

  .banner_bg {
    padding: 30px;
  }

  .h1 {
    font-size: 40px;
  }

  .h2 {
    font-size: 32px;
  }

  .fs-5 {
    font-size: 16px !important;
  }

  .fs-sm {
    font-size: 14px !important;
  }

  .container_quem_somos {
    right: 0px !important;
    padding: 40px 20px;
    z-index: 0;
  }

  .banner-23 {
    background-color: rgba(14, 67, 103, 1);
    border-top-left-radius: 5rem;
    border-bottom-right-radius: 6rem;
    border-top-right-radius: 0rem;
    border-bottom-left-radius: 0rem;
  }


  #main-nav {
    display: none;
    text-align: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: absolute;
    top: 80px;
    right: 0;
    background-color: rgba(14, 67, 103, 0.95);
    width: 100%;
    height: 100vh;
    padding: 10px;
    border-radius: 0 0 0 8px;
    gap: 20px;
    z-index: 20000000;
  }

  #main-nav a {
    padding: 10px;
    /*color: white;*/
    text-align: center;
    font-size: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  #main-nav button {
    margin-top: 20px;
  }

  #main-nav a:last-child {
    border-bottom: none;
  }

  .nav-masthead .nav-link+.nav-link {
    margin-left: 0rem;
  }

  #menu-toggle {
    display: block;
  }
}
}

/* Em telas grandes, mostra o menu e esconde o botão */
@media (min-width: 1025px) {


  .text-md-justify {
    text-align: justify!important;
  }


  #menu-toggle {
    display: none;
  }

  #main-nav {
    display: flex;
    gap: 20px;
  }

  .container_quem_somos2 {
    padding: 0px 0px;
    z-index: 0;
  }


}