/* ===================================
   Labvax - Sistema Inteligente de Imunização
   Custom Styles
   =================================== */

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

/* Hero Pattern Background */
.hero-pattern {
    background-color: #fdf0d0;
    background-image: radial-gradient(#47ab99 0.5px, transparent 0.5px), radial-gradient(#47ab99 0.5px, #fdf0d0 0.5px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    opacity: 0.6;
}

/* Card Hover Effect */
.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 58, 70, 0.1), 0 10px 10px -5px rgba(0, 58, 70, 0.04);
    border-color: #f6781e;
}

/* Modal Styles */
.modal {
    transition: opacity 0.25s ease;
}

body.modal-active {
    overflow-x: hidden;
    overflow-y: hidden !important;
}

/* Custom Scrollbar - Vaccine List */
.vaccine-list::-webkit-scrollbar {
    width: 8px;
}

.vaccine-list::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.vaccine-list::-webkit-scrollbar-thumb {
    background: #47ab99;
    border-radius: 4px;
}

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

.animate-fade-in-up {
    animation: fade-in-up 0.6s ease-out;
}

@keyframes bounce-slow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.animate-bounce-slow {
    animation: bounce-slow 2s infinite;
}
