body, html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #121212;
  color: #ffffff;
}

.header {
  background-color: #98908d;
  padding: 15px;
  text-align: center;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.header button {
  background-color: #25D366;
  color: #fff;
  padding: 12px 18px;
  border: none;
  cursor: pointer;
  margin-left: 10px;
  border-radius: 8px;
  font-size: 1rem;
}

section {
  padding: 30px 15px;
  margin-top: 80px;
  text-align: center;
}

.banner, .benefits, .cta {
  background-color: #333333;
  margin-bottom: 40px;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
  width: 90%;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.carousel {
  background-color: #333333;
  margin-bottom: 40px;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
  width: 90%;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.carousel-container {
  display: flex;
  overflow-x: auto;
  gap: 15px;
  justify-content: center;
}

.carousel-container img {
  width: 180px;
  height: 180px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.gallery {
  background-color: #333333;
  margin-bottom: 40px;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
  width: 90%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 15px;
  justify-content: center;
}

.gallery-container img {
  width: 100%;
  height: 180px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.banner button, .carousel button, .benefits button, .gallery button, .cta button {
  background-color: #FF6347;
  color: #ffffff;
  padding: 16px 32px;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  border-radius: 10px;
  margin-top: 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.banner button:hover, .carousel button:hover, .benefits button:hover, .gallery button:hover, .cta button:hover {
  background-color: #FF4500;
  transform: scale(1.05);
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
  .banner, .carousel, .benefits, .gallery, .cta {
    width: 95%;
  }

  .carousel-container img, .gallery-container img {
    width: 160px;
    height: 160px;
  }
}

@media (max-width: 480px) {
  .banner, .carousel, .benefits, .gallery, .cta {
    width: 100%;
    padding: 20px;
  }

  .carousel-container img, .gallery-container img {
    width: 140px;
    height: 140px;
  }
}