/* style.css for Nutrilife Macaé */

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

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f4f4f5;
}
::-webkit-scrollbar-thumb {
    background: #a1a1aa;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #71717a;
}

/* Accordion Smooth Transition */
.accordion-content {
    transition: all 0.3s ease-in-out;
}
