.hero-socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.hero-socials a {
  min-width: 132px;
  height: 48px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, .38);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  transition: background .2s, border-color .2s, color .2s;
}

.hero-socials svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.hero-socials svg path,
.hero-socials svg .fill {
  fill: currentColor;
  stroke: none;
}

.hero-socials a:hover {
  background: #5a980d;
  border-color: #5a980d;
}

@media (max-width: 650px) {
  .hero-socials {
    margin-top: 10px;
  }

  .hero-socials a {
    flex: 1;
    min-width: 0;
    justify-content: center;
  }
}

.contact-buttons {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.button-whatsapp {
  background: #0b0b0b;
  color: #fff;
}

.button-whatsapp:hover {
  background: #5a980d;
}

.button-whatsapp svg {
  width: 20px;
  height: 20px;
  margin-right: 9px;
  fill: currentColor;
}

@media (max-width: 650px) {
  .contact-buttons {
    width: 100%;
    flex-direction: column;
  }
}
