:root {
    --hommex-color: #83C0E0;
    --hommex-dark: #091F5B;
    --hommex-soft: #E5E5E5;
	--hommex-second:#FF9900;
    --gray-soft: 3C3C3C;
}

.text-digipay {
	color: var(--hommex-color) !important; 
}

.bg-digipay {
	background-color: var(--hommex-color) !important; 
}

.bg-red-soft {
	background-color: var(--hommex-soft) !important; 
}

.border-digipay {
	border-color: var(--hommex-color) !important; 
}

.text-light-red {
	color: var(--hommex-light-text) !important; 
}

.hover-lift-digipay:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(239, 57, 78, 0.15) !important;
    border-color: var(--hommex-color) !important;
}

.pulse-digipay {
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% { box-shadow: 0 0 0 0 rgba(239, 57, 78, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(239, 57, 78, 0); }
    100% { box-shadow: 0 0 0 0 rgba(239, 57, 78, 0); }
}

.btn-light.text-digipay {
    color: var(--hommex-color);
}

.btn-light.text-digipay:hover {
    color: var(--hommex-second);
}

.rounded-5 {
	border-radius: 2rem !important; 
}