/* Complementos leves para o layout em Tailwind */

:root {
  color-scheme: light;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 1rem;
  background: #111827;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  z-index: 100;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.menu.is-active {
  display: flex !important;
}

.footer-social {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background-color: rgba(212, 175, 55, 0.18);
  color: #d4af37;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  background-color: #d4af37;
  color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .footer-social {
    flex-direction: column;
  }
}

.specialties {
  list-style: none;
  margin: 0;
  padding: 0;
}

.specialties li {
  position: relative;
  padding-left: 1.5rem;
}

.specialties li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.15rem;
  color: #b8860b;
  font-weight: 700;
}
