/* Custom Styles for AC Estética Avançada */

body {
  scroll-behavior: auto;
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
}

/* Base adjustment for Lucide Icons */
[data-lucide] {
  display: inline-block;
  vertical-align: middle;
}

/* Animations that mimic framer-motion's fade effects */
.fade-in {
  animation: fadeIn 0.4s ease-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* FAQ Content Transitions */
.faq-content {
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
}

.faq-btn:focus {
  outline: none;
}
