
.hero {
  text-align: center;
  padding: 100px 20px;

  /* --- IMAGEM DE FUNDO --- */
  background-image: url('/images-banner/negociacoes.jpg'); /* coloque sua imagem */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  position: relative;
  color: white; /* ajusta texto para ficar visível */
}

/* Overlay opcional para melhorar leitura */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.35);
  z-index: 0;
}

/* Mantém seu conteúdo por cima da imagem */
.hero > * {
  position: relative;
  z-index: 1;
}

/* Seu CSS original */
.hero .foto {
  width: 180px;
  height: 180px;
  object-fit: cover;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.hero span {
  color: #4f9bff;             /* cor interna */
  -webkit-text-stroke: 1.5px #fff; /* borda branca */
}

.hero p {
  font-size: 2rem;
  font-weight: bold;
  max-width: 600px;
  margin: 0 auto 30px;
  color: #fff; /* melhor para texto claro */
}

.social-links a {
  display: inline-block;
  margin: 50px 30px;
  color: #0077ff;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.3s;
}

.social-links a:hover {
  text-decoration: underline;
  transform: translateY(-5px);
}

.social-links img {
    width: 60px;
}