/* Navbar translúcida */
.navbar {
  background: rgba(255, 255, 255, 0.904);
  backdrop-filter: blur(6px);
}

/* Hero Banner */
.banner {
  background: url('../img/futebol.jpg') no-repeat center center/cover;
  position: relative;
}

.banner::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.banner .container {
  position: relative;
  z-index: 2;
}

/* Zoom suave na imagem do banner */
.banner:hover {
  transform: scale(1.02);
  transition: transform 0.5s ease-in-out;
}

/* Quem Somos */
#quem-somos p {
  text-align: left;
}

/* Ícones missão/visão/valores */
#quem-somos i {
  color: #303879;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

/* Cor do hover no menu */
.navbar-nav .nav-link {
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #303879 !important; /* Azul no tom do logo */
}

/* Linha decorativa à esquerda dos títulos */
section h2,
section h3 {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

section h2::after,
section h3::after {
  content: "";
  display: block;
  width: 40px;   /* largura da linha */
  height: 4px;   /* espessura */
  background-color: #303879; /* azul do logo */
  margin-top: 8px;
  border-radius: 2px;
}

/* Estilo dos cards da equipe */
.equipe-card {
  background-color: #f8f9fa; /* cinza claro */
  border: none;
  border-radius: 12px;
  padding: 20px;
  transition: transform 0.3s ease;
}

.equipe-card:hover {
  transform: translateY(-5px);
}

.card-text {
  text-align: center !important;
}

/* Imagem circular da equipe */
.equipe-img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.contato-txt {
  margin: 20px 0;
}

.contato-txt a{
  text-decoration: none !important;
  color: #303879 !important;
}

.text-white{
  text-decoration: none !important;
}

/* Para mobile: remove a quebra de linha do <br> */
@media (max-width: 768px) {
  h1 br {
    display: none;
  }
}
