/* Carousel - Modo Escuro */
body.dark-mode .carousel-overlay {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
}

/* Hero Banner / Carousel */
#home {
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.carousel {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
  z-index: 2;
}

.carousel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 3;
  color: #fff;
  padding: 0 20px;
}

.carousel-content {
  max-width: 800px;
  padding: 20px;
  position: relative;
  z-index: 4;
}

.carousel-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.carousel-content p {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.carousel-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(39, 165, 22, 0.5);
  cursor: pointer;
  transition: background 0.3s;
}

.carousel-dot.active {
  background: #1cd803;
}

/* Sobre Nós */
#sobre {
  background: var(--bg-light);
}

.sobre-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.sobre-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
}

/* Resultados Sociais */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}