body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(180deg, #e3f2fd, #ffffff);
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  background: #0d6efd;
}

.navbar-brand {
  font-weight: bold;
  color: white !important;
  font-size: 1.5rem;
}

/* Ícones redes sociais */
.social-icons a {
  color: white;
  font-size: 1.4rem;
  margin-left: 15px;
  transition: transform 0.3s, color 0.3s;
}

.social-icons a:hover {
  color: #ffc107;
  transform: scale(1.2);
}

/* Carousel */
.carousel-item img {
  border-radius: 20px;
  object-fit: cover;
  height: 70vh;
}

/* Boxes */
.info-box {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.info-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.info-box img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 5px solid #0d6efd;
}

.info-text {
  padding: 20px;
  text-align: center;
}

.info-text h4 {
  color: #0d6efd;
  margin-bottom: 10px;
}

/* Seções */
.section {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  padding: 40px;
  margin-top: 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Rodapé */
footer {
  background: #0d6efd;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  border-radius: 20px 20px 0 0;
}

/* Animação de entrada */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

[data-animate].animate {
  opacity: 1;
  transform: translateY(0);
}

.carousel-caption h5.bg-primary {
  background-color: rgba(13, 110, 253, 0.6) !important; /* 0.6 = 60% opacidade */
  padding: 0.5rem 1rem;
  border-radius: 10px;
  bottom: 0px;
}

.carousel-caption{
   bottom: 0px;
}

 .map-container iframe {
      width: 100%;
      height: 350px;
      border: none;
      border-radius: 15px;
    }

