    .icon-circle {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
    }

    .bg-primary-subtle {
        background-color: rgba(13, 110, 253, 0.1);
    }

    .bg-danger-subtle {
        background-color: rgba(220, 53, 69, 0.1);
    }

    .bg-success-subtle {
        background-color: rgba(25, 135, 84, 0.1);
    }

    .card-hover {
        transition: transform 0.2s, box-shadow 0.2s;
    }

    .card-hover:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .border-primary {
        border: 2px solid var(--bs-primary) !important;
    }

    .fw-500 {
        font-weight: 500;
    }

    #telemedicineBtn {
        position: relative;
        overflow: hidden;
    }

    #telemedicineBtn::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }

    #telemedicineBtn:hover::before {
        width: 300px;
        height: 300px;
    }

    /* ✅ Ajuste de tamaño en móvil */
    @media (max-width: 768px) {
        .card-body h4 {
            font-size: 1.2rem !important;
        }
        .card-body ul li {
            font-size: 0.70rem !important;
            line-height: 1.4 !important;
        }
        .card-body .btn-mobile-sm {
            padding: 0.0rem 0rem !important;
            font-size: 0.85rem !important;
        }
        .card-header h6 {
            font-size: 0.73rem !important;
        }
    }

    /* ✅ Efecto hover en tarjetas de planes */
    .card-plan-hover {
        transition:
            transform 0.3s ease,
            box-shadow 0.3s ease,
            border-color 0.3s ease;
        will-change: transform, box-shadow;
    }

    /* Estado normal */
    .card-plan-hover {
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }

    /* Estado hover/focus */
    .card-plan-hover:hover,
    .card-plan-hover:focus-within {
        transform: translateY(-4px);
        box-shadow: 0 6px 16px rgba(0,0,0,0.15);
        z-index: 1;
    }

    /* Estado activo (manteniendo presionado) */
    .card-plan-hover:active {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    }

    /* Para móviles: evitar z-index conflictos */
    @media (max-width: 767px) {
        .card-plan-hover:hover {
            transform: translateY(0);
            box-shadow: 0 4px 12px rgba(0,0,0,0.12);
        }
    }

    /* ✅ Animación al cargar */
    @keyframes slideInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .card-plan-hover {
        animation: slideInUp 0.6s ease-out forwards;
    }

    .card-plan-hover:nth-child(1) { animation-delay: 0.1s; }
    .card-plan-hover:nth-child(2) { animation-delay: 0.2s; }
    .card-plan-hover:nth-child(3) { animation-delay: 0.3s; }