/* Agregar nuevo archivo CSS para los estilos de suscripción */
.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 1.25rem;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    background-color: var(--bs-primary) !important;
}

.feature-item:hover .feature-icon i {
    color: white !important;
}

.card {
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important;
}

.btn {
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
} 

.icon_suscription::before {
    color: white;
}
