nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 400;
  padding-bottom: 5px;
  transition: all 0.3s ease;
}

/* Efeito ao passar o mouse */
nav ul li a:hover {
  font-weight: 600;
  border-bottom: 2px solid #000;
}

/* Estilo para o link ativo */
nav ul li a.active {
  font-weight: 600;
  border-bottom: 2px solid #000; /* risco abaixo */
}

/* SOBRE O GRUPO MIDO */
.sobre-gr {
  padding: 60px 20px;
  background: #fff;
  margin-top: -195px;
}

.sobre-gr .titulo {
 font-size: 80px;
  text-align: center;
  margin: 0 0;
  font-family: "Arial Black", sans-serif;
  color: #ffffff;                  /* cor interna da letra */
  -webkit-text-stroke: 1px #000000; /* contorno branco */
}

.sobre-grupo {
  display: flex;
  align-items: center;   /* alinha verticalmente */
  gap: 30px;             /* espaço entre imagem e texto */
  max-width: 1200px;
  margin: 0 auto;
}

.fachada-sobre {
  width: 380px;   /* controla o tamanho da foto */
  height: auto;
  border-radius: 10px;
  flex-shrink: 0; /* impede a imagem de distorcer */
  margin-top: -50px;
}

.texto-sobre {
  flex: 1; /* ocupa o restante do espaço */
}

.texto-sobre p {
  margin-bottom: 18px;
  font-size: 18px;
  line-height: 1.6;
  color: #444;
  text-align: justify;
}

/* Responsivo - celular */
@media (max-width: 768px) {
  .sobre-grupo {
    flex-direction: column;
    text-align: center;
  }

  .fachada-sobre {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .texto-sobre {
    text-align: justify;
  }
}

/* Seção Valores */
.valores {
  background-color: #000;
  padding: 40px 20px;
  text-align: center;
}

/* Container dos cards */
.valores-cards {
  display: flex;
  justify-content: center;
  margin: 60px; 
  gap: 30px;
  flex-wrap: wrap; /* quebra no mobile */
}

/* Cada card (missão, visão, valores) */
.valores-cards .missão,
.valores-cards .visão,
.valores-cards .valoers {
  flex: 1 1 250px;
  max-width: 280px;
  border: 2px solid #fff;
  border-radius: 30px;
  padding: 30px 20px;
  color: #fff;
  text-align: center;
  transition: all 0.3s ease;
}

/* Hover geral */
.valores-cards:hover .missão,
.valores-cards:hover .visão,
.valores-cards:hover .valoers {
  transform: scale(0.9);
  opacity: 0.6;
}

/* Hover no card ativo */
.valores-cards .missão:hover,
.valores-cards .visão:hover,
.valores-cards .valoers:hover {
  transform: scale(1.1);
  opacity: 1;
  z-index: 1;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* Ícones */
.valores-cards i {
  font-size: 28px;
  margin-bottom: 15px;
  color: #fff;
}

/* Texto */
.valores-cards p {
  font-size: 14px;
  color: #b5b5b5;
  line-height: 1.4;
}

