:root {
    --primary-purple: #8B5CF6;
    --primary-blue: #4171D6;
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

/* Estilos personalizados */
.text-primary-purple {
    color: var(--primary-purple);
}

.bg-primary-purple {
    background-color: var(--primary-purple);
}

.text-primary-blue {
    color: var(--primary-blue);
}

.bg-primary-blue {
    background-color: var(--primary-blue);
}

/* Hover effects */
.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}



/* Menu Hambúrguer */
#mobile-menu-button {
    transition: all 0.2s ease;
}

#mobile-menu-button:hover {
    background-color: #f3f4f6;
    transform: scale(1.05);
}

#mobile-menu-button:active {
    transform: scale(0.95);
}

#mobile-menu {
    position: relative;
    z-index: 50;
}

#mobile-menu a {
    transition: all 0.2s ease;
    border-radius: 8px;
    padding: 12px 16px;
    margin: 4px 0;
}

#mobile-menu a:hover {
    background-color: #f8fafc;
    padding-left: 20px;
}

/* Animação suave para o menu mobile */
.mobile-menu-enter {
    opacity: 0;
    transform: translateY(-10px);
}

.mobile-menu-enter-active {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.mobile-menu-exit {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-exit-active {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

/* Responsividade adicional */
@media (max-width: 640px) {
    #mobile-menu {
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }
    
    #mobile-menu a {
        font-size: 1rem;
        padding: 14px 16px;
    }
}
    transition: opacity 200ms, transform 200ms;
}

.mobile-menu-exit {
    opacity: 1;
}

.mobile-menu-exit-active {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 200ms, transform 200ms;
}

/* Stats cards */
.stats-card {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.stats-icon {
    font-size: 2.5rem;
    color: var(--primary-purple);
    transition: transform 0.3s ease;
}

.stats-card:hover .stats-icon {
    transform: scale(1.1);
}

.stats-number {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
}

.stats-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
    margin-top: 0.5rem;
}

/* Help cards */
.help-card {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.help-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.help-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.help-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.help-card:hover .help-icon {
    transform: scale(1.1);
}

.help-title {
    color: var(--primary-blue);
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
}

.help-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}