﻿.hvr-bounce-to-right {
    transition: all 0.3s ease;
}

.hvr-bounce-to-right:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(40, 167, 69, 0.4) !important;
}

.hvr-sweep-top:hover {
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* Responsividade para mobile */
@media (max-width: 768px) {
    .btn-lg {
        font-size: 0.9rem;
        padding: 12px 24px !important;
    }

    .header-text p {
        font-size: 0.9rem !important;
    }

    .col-3 {
        margin-bottom: 10px;
    }
}

/* Animação para contador */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.border-warning {
    animation: pulse 2s infinite;
}
