body {
  font-family: 'Poppins', sans-serif;
}

nav.navbar {
  background-color: #198754;
}

.hero {
  background-image: url('../imagens/banner.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-weight: 800;
  font-size: 3rem;
}

.hero p {
  font-size: 1.25rem;
  margin-top: 10px;
}

.section-title {
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: #198754;
}

.logo-time {
  width: 35px;
  height: 35px;
  object-fit: contain;
  border-radius: 50%;
  margin-right: 8px;
}

.nav-link{
	color:#FFFFFF !important;
}

footer {
  background: #198754;
  color: white;
  text-align: center;
  padding: 20px 10px;
  margin-top: 50px;
}

/* Animações suaves */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Melhorar responsividade da tabela */
.table td, .table th {
  vertical-align: middle;
}

.alignLeft{
	text-align:left;
}

/* Ajustes específicos mobile */
@media (max-width: 576px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  footer {
    padding: 10px;
  }
}
