Sobre a Paraíso do Bebê

.historia-container {
  font-family: "Poppins", sans-serif;
  color: #333;
  background-color: #ffffff;
  padding-bottom: 50px;
}

/* Banner principal */
.hero-banner {
  position: relative;
  text-align: center;
  overflow: hidden;
}

.hero-banner img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  filter: brightness(0.8);
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  background-color: rgba(0, 128, 96, 0.6);
  padding: 20px 40px;
  border-radius: 8px;
}

.hero-text h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 1.2em;
}

/* Texto da história */
.historia-content {
  max-width: 900px;
  margin: 50px auto;
  padding: 0 20px;
  line-height: 1.8;
  text-align: justify;
}

.historia-content strong {
  color: #3ba37d;
}

/* Slider de imagens */
.slider {
  overflow: hidden;
  position: relative;
  background: #eaf8f1;
  padding: 30px 0;
  margin-top: 30px;
}

.slide-track {
  display: flex;
  animation: scroll 30s linear infinite;
  gap: 20px;
}

.slide-track img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s;
}

.slide-track img:hover {
  transform: scale(1.05);
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Informações */
.info-section {
  background-color: #c7f0d8;
  text-align: center;
  padding: 40px 20px;
  border-top: 5px solid #3ba37d;
}

.info-section h2 {
  color: #2e7d63;
  margin-bottom: 20px;
}

.info-section p {
  margin: 5px 0;
  font-size: 1.1em;
}