main.conteudo-principal {
  padding: 40px 20px;
  max-width: 1350px;
  margin: 0 auto;
}

main h1 {
  font-size: 24px;
  text-align: center;
  margin-bottom: 60px;
  margin-top: 60px;
  color: #333;
}

/* Seção de Segmentos */


.segmentos {
  padding: 40px 20px;
  text-align: center;
  background-color: #f8f8f8;
}

.titulo-segmento {
  font-size: 24px;
  margin-bottom: 30px;
  color: #333;
}

.grade-segmentos {
  display: grid;
  grid-template-columns: repeat(10, 1fr); /* 10 por linha */
  gap: 20px;
  justify-items: center;
  max-width: 1350px;
  margin: 0 auto;
}

/* Estilo dos botões com ícones */
.icone-segmento {
  text-decoration: none;
  color: #333;
  font-size: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s ease, color 0.3s ease;
}

.icone-segmento img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #fff; /* pode mudar para transparent se quiser */
  padding: 8px;
  margin-bottom: 8px;
  border: 2px solid #ddd;
  transition: border 0.3s ease, transform 0.2s ease;
}

/* Hover */
.icone-segmento:hover {
  transform: translateY(-5px);
  color: #ff6600;
}

.icone-segmento:hover img {
  border-color: #ff6600;
}

/* Responsivo */
@media (max-width: 1024px) {
  .grade-segmentos {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 600px) {
  .grade-segmentos {
    grid-template-columns: repeat(2, 1fr);
  }
}
