/* Sonrisa Viva — Shared Styles */

/* WhatsApp floating button */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

/* Prose styles for legal pages */
.prose h2 { font-size: 1.25rem; font-weight: 700; margin-top: 2rem; margin-bottom: 0.75rem; }
.prose p { margin-bottom: 1rem; line-height: 1.75; color: #475569; }
.prose a { text-decoration: underline; }
.prose a:hover { color: #005d90; }

/* Smooth scroll */
html { scroll-behavior: smooth; }

/* Focus ring */
*:focus-visible { outline: 2px solid #0077b6; outline-offset: 2px; }

/* Material symbols */
[data-icon] { font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24; }

@media (max-width: 768px) {
  .whatsapp-btn { bottom: 16px; right: 16px; width: 50px; height: 50px; }
}
