/* Custom Styles for Psicólogo Fábio */

/* Smooth scroll is applied via Tailwind class on html tag, but we can reinforce it */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Adjust for fixed header */
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #F9FAFB; 
}
 
::-webkit-scrollbar-thumb {
    background: #9CA3AF; 
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6B7280; 
}

/* Alpine.js Cloak to hide elements until Alpine is ready */
[x-cloak] { display: none !important; }

/* Subtle Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

/* Enhancing inputs if needed in the future */
input:focus, textarea:focus, select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}
