.top-bar {
  background: #004400;
  color: #fff;
  text-align: center;
  padding: 24px 0;
  font-size: 20px;
  letter-spacing: 0.4em;
  font-weight: bold;
  font-family: Arial, sans-serif;
}

body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  background-color: #0d0d0d;
  color: #f3f3f3;
}

.banner {
  position: relative;
  height: 100vh;
  background: url("content/LLNEW-BG-1.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10%;
}

@media (max-width: 768px) {
  .banner {
    height: auto;
    padding-top: 80px;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .banner-conteudo {
    margin-top: 20px;
  }

  .banner-conteudo h1 {
    margin-top: 20px;
    font-size: 2rem;
    line-height: 1.3;
  }
}

.banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 25, 0, 0.95) 40%,
    rgba(0, 25, 0, 0.3) 70%,
    transparent 100%
  );
}

.banner-conteudo {
  position: relative;
  color: #fff;
  text-align: center;
  max-width: 700px;
}

.logo {
  width: 100%;
  max-width: 300px;
}

.banner-conteudo h1 {
  font-size: 3rem;
  max-width: 900px;
  margin: 0 auto 1rem;
  line-height: 1.2;
}

.banner-conteudo p {
  font-size: 1.3rem;
  color: #ddd;
}

.botao {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 28px;
  background: #2ecc40;
  color: #000;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  transition: background-color 0.3s ease;
}

.botao:hover {
  background: #27ae60;
  color: #fff;
}

.container {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0;
}

.info-section {
  padding: 10px 0;
}

.info-section.green-bg {
  background-image: linear-gradient(to bottom, #004400, #001a00);
}

.info-section.green-bg.tg {
  background-image: url(content/LL_bg3.svg);
  background-size: cover;
  position: relative;
  padding: 1px 0;
}

.info-section.green-bg.tg .container {
  position: relative;
  z-index: 2;
}

.info-section.green-bg.tg .text-content {
  max-width: 600px;
}

.info-section.green-bg.tg .image-content img {
  max-width: 100%;
  height: auto;
  border-radius: 0;
}

.info-section.green-bg.tg h2 {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 30px;
}
.green-bg {
  background-color: #012900;
  background-image: url(https://lopeslix.com.br/wp-content/uploads/2022/05/bg-verde-lopes-lix.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.dark-bg {
  background-color: #1a1a1a;
}

.split-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.split-layout.reverse {
  flex-direction: row-reverse;
}

.split-layout .text-content,
.split-layout .image-content {
  flex: 1;
}

.text-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.text-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.image-content img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}

.stats-section {
  background-color: #1a1a1a;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.seal {
  max-width: 180px;
  margin-bottom: 50px;
}

.stats-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 40px;

  margin-top: 40px;
}

.stat-item h3 {
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 5px;
}

.stat-item p {
  font-size: 1em;
  font-weight: 400;
  line-height: 1.4;
}

.text-content.card {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 40px;
  border-radius: 15px;
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-float img {
  width: 35px;
}

@media (max-width: 480px) {
  .top-bar {
    font-size: 16px;
    letter-spacing: 0.2em;
  }
  .banner {
    justify-content: center;
    text-align: center;
    padding: 0 5%;
  }
  .banner-conteudo {
    text-align: center;
  }
  .split-layout,
  .split-layout.reverse {
    flex-direction: column;
  }
  .split-layout .image-content {
    width: 100%;
    margin-top: 30px;
    min-height: 300px;
    display: block;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
    .carousel-container {
    position: relative;
    overflow: hidden;
    height: 300px; /* Altura ajustada para celular */
    width: 100%;
    margin: 0 auto;
    display: block !important; /* Força a exibição */
  }
  
  .carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .text-content h2 {
    font-size: 2rem;
  }
}

.onda-bg {
  position: relative;
  width: 100%;
  height: 25vh;
  overflow: hidden;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  height: 400px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.carousel-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s;
}

.carousel-image.active {
  opacity: 1;
  visibility: visible;
}
.mountains-divider {
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
  margin-top: -1px;
  height: 120px;
  background-color: #012900;
}

.mountains-divider svg {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
}

.mountains-divider .shape-fill {
  fill: #ffffff;
}
