/* CSS Document */
.roadmap-card {
    background: #ffffff;
    border: 1px solid #e8eef5;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    position: relative;
    height: 100%;
}
.roadmap-step-badge {
    width: 45px;
    height: 45px;
    background: var(--insac-primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    margin: 0 auto 15px auto;
    box-shadow: 0 4px 10px rgba(var(--insac-primary-rgb), 0.3);
}

/* Carrusel de Planes de Precios */
.price-carousel-card {
    background: #ffffff;
    border: 2px solid #e8eef5;
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}
.price-carousel-card.featured {
    border-color: var(--insac-primary);
    box-shadow: 0 15px 35px rgba(var(--insac-primary-rgb), 0.15);
}
.price-carousel-card.featured .featured-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--insac-primary);
    color: #ffffff;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}
.price-value {
    font-size: 42px;
    font-weight: 900;
    color: var(--insac-dark);
    margin: 15px 0;
}
.price-value small {
    font-size: 16px;
    color: #64748b;
    font-weight: 600;
}		
