/* estilo.css */

body {
  background-color: white;
}

header {
  border-bottom: 2px solid #ccc;
  padding-top: 10px;
  padding-bottom: 10px;
}

.navbar {
  min-height: 60px;
}

.navbar-brand img {
  max-height: 50px;
  height: auto;
  width: auto;
}

@media (min-width: 768px) {
  .navbar-brand img {
      max-height: 70px;
  }
}

.navbar-nav {
  display: flex;
  align-items: center;
}

.navbar-nav .nav-item {
  display: flex;
  align-items: center;
  height: 50px;
}

.navbar-nav .nav-link {
  padding: 10px 15px;
  transition: background-color 0.3s, color 0.3s;
  font-size: 16px;
}

.navbar-nav .nav-link:hover {
  background-color: #d1d1d1;
  color: #0056b3;
  border-radius: 5px;
}

.navbar-nav .btn {
  transition: background-color 0.3s;
}

.navbar-nav .btn:hover {
  background-color: #e0a800;
}


/* Estilos do carrossel da página inicial */

.carousel-item {
  height: 400px;
  overflow: hidden;
  transition: transform 2s ease-in-out;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
