.banner-fada {
  position: relative;
  text-align: center;
  color: white;
  margin: 20px auto;
  max-width: 1200px;
}
.banner-fada img {
  width: 100%;
  height: auto;
  filter: brightness(0.7);
  border-radius: 8px;
}
.banner-texto {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
}
.banner-texto h2 {
  font-size: 28px;
  font-weight: bold;
  margin: 0 0 10px 0;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}
.banner-texto p {
  font-size: 16px;
  margin: 0 0 15px 0;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}
.botao-fada {
  background-color: #6B8E23;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  display: inline-block;
}
@media (max-width: 768px) {
  .banner-texto h2 { font-size: 20px; }
  .banner-texto p { font-size: 14px; }
  .banner-fada { margin: 10px; }
}