.footer-contact p {
  margin: 8px 0 14px;
  color: rgba(255, 255, 255, 0.78);
}

.phone-number {
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.contact-button:hover {
  transform: translateY(-1px);
}

.contact-button:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

.contact-button.whatsapp {
  border-color: var(--green);
  background: var(--green);
  color: #071b0c;
}

@media (max-width: 759px) {
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .contact-button {
    width: 100%;
    min-height: 52px;
  }
}
