body {
  background-color: #0d0d0d;
  color: #ffffff; /* texto branco padrão */
}

/* Navbar customizada */
.custom-navbar {
  background-color: #949090; /* Cinza mais escuro */
}

/* Logo na navbar */
.logo-navbar {
  height: 40px;
  width: auto;
}

.hero-section {
  background: linear-gradient(rgba(13, 13, 13, 0.7), rgba(13, 13, 13, 0.7)),
    url("images/fundosessasobrenos.png") no-repeat center center;
  background-size: cover;
  padding: 80px 0;
  min-height: 500px;
}

.hero-img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.5)); /* sombra discreta */
}

.hero-section h1 {
  font-size: 2rem;
}

.hero-section .btn {
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero-section .btn:hover {
  background-color: #ffffff;
  color: #2b2b2b;
}

.custom-card {
  background: linear-gradient(to bottom, #1f1f1f, #131313);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  border: none;
  transition: transform 0.3s ease;
  position: relative;
}

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

.card-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #0d3d2d; /* verde de fundo do círculo */
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  overflow: hidden;
}

.icon-img {
  max-width: 60px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.team-card {
  background: #1a1a1a; /* fundo bem discreto */
  border: 1px solid #2a2a2a; /* leve borda para dar destaque */
  border-radius: 8px; /* cantos levemente arredondados */
  padding: 0; /* sem espaçamento extra */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3); /* sombra leve */
  overflow: hidden; /* garante que a imagem siga o formato do card */
  transition: transform 0.3s ease;
}

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

.team-card img {
  width: 250px; /* largura fixa */
  height: 410px; /* altura fixa */
  border-radius: 0; /* deixa circular (se quiser quadrado, troque para 8px por ex.) */
  object-fit: cover; /* garante que a imagem preencha sem distorcer */
  display: block;
}

.custom-card {
  background: linear-gradient(to bottom, #1f1f1f, #131313);
  border: none;
  border-radius: 16px;
  padding: 20px 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  height: 100%;
}

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

.custom-card img {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  height: 400px;
  object-fit: cover;
}

.custom-card {
  background: linear-gradient(to bottom, #1f1f1f, #131313);
  border: none;
  border-radius: 16px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

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

.icon-box {
  color: #ffffff;
  font-size: 2rem;
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.1);
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 1000;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
  transition: background-color 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #1ebe5b;
  text-decoration: none;
}

.footer-custom {
  background-color: #5c5a5a;
}

.footer-custom p,
.footer-custom h5 {
  color: #ffffff;
}

.footer-custom i {
  color: #ffffff;
}

.footer-custom .social-icon {
  display: inline-block;
  color: white;
  background-color: transparent;
  border: 1px solid white;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 35px;
  transition: 0.3s;
}

.footer-custom .social-icon:hover {
  background-color: #1ebe5b;
  color: white;
  border-color: #1ebe5b;
}

a.text-decoration-none:hover {
  color: #25d366; /* Verde para links em geral como WhatsApp e email */
  text-decoration: underline;
  transition: color 0.3s ease;
}

/* Ícones Sociais - cores no hover */
.social-icon:hover i.fa-facebook-f {
  color: #1877f2; /* Azul Facebook */
}

.social-icon:hover i.fa-instagram {
  color: #ec0ac7; /* Rosa Instagram */
}

.social-icon:hover i.fa-linkedin-in {
  color: #0077b5; /* Azul LinkedIn */
}

.bg-quem-somos {
  /* imagem + overlay para facilitar leitura do texto */
  background-image: linear-gradient(
      rgba(18, 24, 24, 0.6),
      rgba(18, 24, 24, 0.6)
    ),
    url("images/fundosessasobrenos.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; /* preenche a tela */
  background-attachment: fixed; /* opcional: efeito parallax leve */
  color: #fff;
}
