.banners {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgb(0 0 0 / 0.08);  
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.banners img {
  width: 15vw;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.banners .info {
  flex: 1;
}

.banners .info p {
  margin-bottom: 12px;
  font-size: 1rem;
  line-height: 1.5;
  color: #444;
}

.banners .info p strong {
  color: #990000;
  font-size: 1.2rem;
}

/* Responsividade banners */
@media (max-width: 768px) {
  .banners {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .banners img {
    width: 98%;
    margin-bottom: 15px;
  }

  .banners .info p {
    text-align: justify;
  }
}

.social-share {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-block;
  padding: 10px 15px;
  border-radius: 5px;
  font-weight: bold;
  color: #fff;
  font-size: 0.9rem;
  transition: background-color 0.3s;
  text-align: center;
}

.social-btn.facebook {
  background-color: #3b5998;
}

.social-btn.facebook:hover {
  background-color: #2d4373;
}

.social-btn.whatsapp {
  background-color: #25D366;
}

.social-btn.outher {
  background-color: #353534;
}

.social-btn.whatsapp:hover {
  background-color: #1ebe5d;
}

.social-btn.outher:hover {
  background-color: #484848;
}

.social-btn.instagram {
  background: radial-gradient(circle at 30% 30%, #feda75, #d62976, #962fbf, #4f5bd5);
}

.social-btn.instagram:hover {
  filter: brightness(0.9);
}
