.hidratacao {
  background: linear-gradient(
    rgba(192, 107, 136, 0.55),
    rgba(255, 218, 230, 0.3)
  );
  color: #3e3e3e;
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  .hero h1 {
    font-size: 1.65rem;
    text-shadow: 1px 2px 1px #5e2a3e;
  }
  .hero p {
    font-size: 1rem;
  }
  .mobile-menu {
    height: 100vh;
  }
  .mobile-menu a:last-child {
    right: 0;
  }
}

/* Hero */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../assets/images/hidratacao-1.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hidratacao-content {
  max-width: 800px;
  margin: auto;
}

.hidratacao-content h1 {
  font-size: 2.5rem;
  color: #5e2a3e;
  margin-bottom: 1.5rem;
}

.hidratacao-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4a4a4a;
  margin-bottom: 2rem;
}

.btn-agendar {
  background-color: #c06b88;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-agendar:hover {
  background-color: #e89cb8;
  transform: scale(1.05);
}

/* Tipos */
.hidratacao-info {
  text-align: center;
  padding: 4rem 1rem;
}

.hidratacao-info h2 {
  color: #5e2a3e;
  margin-bottom: 2rem;
}

.hidratacao-tipos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.tipo {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  padding: 2rem;
  width: 280px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.tipo:hover {
  transform: translateY(-5px);
}

/* Galeria */
.hidratacao-galeria {
  text-align: center;
  padding: 4rem 1rem;
}

.carrossel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 1rem;
}

.carrossel::-webkit-scrollbar {
  display: none;
}

.carrossel-item {
  min-width: 250px;
  max-height: 400px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.carrossel-item img {
  width: 100%;
  height: 100%;
  display: block;
  transition: 0.3s;
}

.carrossel-item img:hover {
  transform: scale(1.05);
}
