body {
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
}

/* Logo */
.navbar-brand img {
  height: 50px;
}

/* Navbar */
.navbar {
  background-color: #004d40 !important; /* Verde escuro */
}
.navbar .nav-link {
  color: #fff !important;
  font-weight: 500;
}
.navbar .nav-link.active,
.navbar .nav-link:hover {
  color: #c0a14a !important; /* Dourado */
}

/* Carrossel */
.carousel-caption h5 {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}
.carousel-caption p {
  font-size: 1.1rem;
  background: rgba(0, 77, 64, 0.7);
  display: inline-block;
  padding: 6px 12px;
  border-radius: 6px;
  color: #fff;
}

.carousel-caption a {
  color: #fff;
  text-decoration: none;
}

/* Títulos das seções */
.section-title {
  margin: 50px 0 30px;
  font-weight: bold;
  text-align: center;
  color: #004d40; /* Verde escuro */
  border-bottom: 2px solid #c0a14a; /* Linha dourada */
  display: inline-block;
  padding-bottom: 6px;
}

/* Cards de Notícias */
.card {
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}
.card-title {
  color: #004d40;
}
.btn-primary {
  background-color: #004d40;
  border: none;
}
.btn-primary:hover {
  background-color: #c0a14a;
  color: #fff;
}

/* Serviços */


.servicos-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 200px));
  gap: 30px;
  margin-top: 30px;
}

.cardicones {
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  
}

.cardicones:hover {
  transform: translateY(-5px);

}

.cardicones:hover i {
  color: #c0a14a;
}

.servico i {
  font-size: 50px;
  color: #004d40; /* cor institucional */
  margin-bottom: 15px;
}



.servico a {
  font-size: 18px;
  color: #333;
  font-weight: bold;
  margin-bottom: 15px;
  text-decoration: none;
}

.servico h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

/* Botão contato */
.btn-success {
  background-color: #c0a14a;
  border: none;
}
.btn-success:hover {
  background-color: #004d40;
  color: #fff;
}

/* Footer */
footer {
  background: #004d40;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}
footer p {
  margin: 0;
}