/* ======= Cabeçalho da Seção Lite ======= */
.intro-lite {
  text-align: center;
  padding-top: 2rem;
  padding-bottom: 0.5rem;
}

.intro-lite h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 5px;
  color: var(--dark);
}

.intro-lite p {
  margin-top: 0;
  color: var(--text-main);
}

/* ======= Container Principal (Igual ao Pro) ======= */
.carrossel-container {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 950px;
  margin: 10px auto 40px auto;
  background: #ffffff;
  padding: 30px 60px; /* Mesmo respiro interno do Pro */
  border: 1px solid rgba(37, 123, 58, 0.15); /* Verde com opacidade baixa */
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(37, 123, 58, 0.1);
  overflow: hidden;
}

.carrossel-content {
  display: flex;
  align-items: center;
  gap: 30px; /* Mesmo espaçamento entre imagem e texto */
  width: 100%;
}

.imagem {
  flex: 1; /* Ocupa o mesmo espaço proporcional */
  text-align: center;
}

.imagem img {
  max-width: 280px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* ======= Caixa de Texto (Igual ao Pro) ======= */
.texto {
  flex: 1.2; /* Ligeiramente maior que a imagem, como no Pro */
  padding: 20px 30px;
  background-color: rgba(37, 123, 58, 0.02); /* Fundo sutil em tom verde */
  border-radius: 8px;
}

.texto h3 {
  color: #257B3A; /* Verde Lite */
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.texto #text-carousel {
  font-size: 1.1rem;
  text-align: justify;
  line-height: 1.6;
  color: #374151;
  margin: 0;
}

/* ======= Badge Lite ======= */
.badge-lite {
  background: linear-gradient(135deg, #257B3A, #3fb35e);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
}

/* ======= Botões de Navegação ======= */
.botao {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #257B3A; 
  color: white;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  transition: background-color .15s, transform .08s;
  box-shadow: 0 4px 15px rgba(37, 123, 58, 0.3);
}

.botao:hover {
  background-color: #1a5629;
  transform: translateY(-50%) scale(1.1);
}

.b-esq { left: 10px; }
.b-dir { right: 10px; }

/* ======= Responsividade ======= */
@media (max-width: 768px) {
  .carrossel-container {
    padding: 20px;
    margin-top: 20px;
  }

  .carrossel-content {
    flex-direction: column;
    text-align: center;
  }

  .texto {
    padding: 15px;
  }

  .texto #text-carousel {
    text-align: center;
  }

  /* No mobile, os botões saem de cima do conteúdo para facilitar o toque */
  .botao {
    position: static;
    transform: none;
    margin: 10px auto;
  }
  
  .intro-pro h2 {
    font-size: 1.5rem;
  }
}